UNPKG

react-native-zoom-toolkit

Version:

Smoothly zoom any image, video or component you want!

39 lines (31 loc) 1.06 kB
export { default as SnapbackZoom } from './components/snapback/SnapbackZoom'; export type * from './components/snapback/types'; export { default as ResumableZoom } from './components/resumable/ResumableZoom'; export type * from './components/resumable/types'; export { default as CropZoom } from './components/crop/CropZoom'; export * from './components/crop/types'; export { default as Gallery } from './components/gallery/GalleryProvider'; export * from './components/gallery/types'; export { PanMode, ScaleMode, PinchCenteringMode, SwipeDirection, } from './commons/types'; export type { Vector, SizeVector, PanGestureEvent, PanGestureEventCallback, PinchGestureEvent, PinchGestureEventCallback, TapGestureEvent, TapGestureEventCallback, } from './commons/types'; export { default as useImageResolution, type FetchImageResolutionResult, type Source, } from './hooks/useImageResolution'; export { getAspectRatioSize } from './utils/getAspectRatioSize'; export { stackTransition } from './commons/misc/stacktransition';