UNPKG

expo-dynamic-image-crop

Version:

Dynamic image cropping component for Expo/React Native with free-form and fixed aspect ratio support

13 lines (12 loc) 684 B
// Main export file for expo-dynamic-image-crop export { ImageEditor, ImageEditorView } from "./ImageEditor"; // Optional: Export individual components if users want to use them separately export { ControlBar } from "./ControlBar"; export { EditingWindow } from "./EditingWindow"; export { ImageCropOverlay } from "./ImageCropOverlay"; export { Processing } from "./Processing"; // Export hooks and context for advanced usage export { usePerformCrop } from "./hooks/usePerformCrop"; export { EditorContext } from "./context/editor"; // Note: Recoil atoms are intentionally not exported to keep the package self-contained // Users should not need to manage the internal state directly