├── .gitignore ├── .vscode └── launch.json ├── README.md ├── image_cropper ├── .vscode │ └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── vn │ │ └── hunghd │ │ └── flutter │ │ └── plugins │ │ └── imagecropper │ │ ├── FileUtils.java │ │ ├── ImageCropperDelegate.java │ │ └── ImageCropperPlugin.java ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── image_cropper_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ └── main.dart │ ├── pubspec.yaml │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── image_cropper.podspec │ └── image_cropper │ │ ├── .gitignore │ │ ├── Package.resolved │ │ ├── Package.swift │ │ └── Sources │ │ └── image_cropper │ │ ├── FLTImageCropperPlugin.m │ │ └── include │ │ └── image_cropper │ │ └── FLTImageCropperPlugin.h ├── lib │ ├── image_cropper.dart │ └── src │ │ └── cropper.dart ├── pubspec.yaml └── screenshots │ ├── cropper_android.gif │ ├── cropper_ios.gif │ └── cropper_web.png ├── image_cropper_for_web ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ │ └── launch.json │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ └── main.dart │ ├── pubspec.yaml │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json ├── lib │ ├── image_cropper_for_web.dart │ └── src │ │ ├── cropper_actionbar.dart │ │ ├── cropper_dialog.dart │ │ ├── cropper_page.dart │ │ └── interop │ │ └── cropper_interop.dart └── pubspec.yaml └── image_cropper_platform_interface ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── image_cropper_platform_interface.dart └── src │ ├── method_channel │ └── method_channel_image_cropper.dart │ ├── models │ ├── cropped_file │ │ ├── base.dart │ │ ├── cropped_file.dart │ │ ├── html.dart │ │ ├── io.dart │ │ └── unsupported.dart │ └── settings.dart │ ├── platform_interface │ └── image_cropper_platform.dart │ └── utils.dart ├── pubspec.yaml └── test └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/README.md -------------------------------------------------------------------------------- /image_cropper/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/.vscode/launch.json -------------------------------------------------------------------------------- /image_cropper/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/CHANGELOG.md -------------------------------------------------------------------------------- /image_cropper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/LICENSE -------------------------------------------------------------------------------- /image_cropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/README.md -------------------------------------------------------------------------------- /image_cropper/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/.gitignore -------------------------------------------------------------------------------- /image_cropper/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/build.gradle -------------------------------------------------------------------------------- /image_cropper/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/gradle.properties -------------------------------------------------------------------------------- /image_cropper/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /image_cropper/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /image_cropper/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/gradlew -------------------------------------------------------------------------------- /image_cropper/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'image_cropper' 2 | -------------------------------------------------------------------------------- /image_cropper/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /image_cropper/android/src/main/java/vn/hunghd/flutter/plugins/imagecropper/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/src/main/java/vn/hunghd/flutter/plugins/imagecropper/FileUtils.java -------------------------------------------------------------------------------- /image_cropper/android/src/main/java/vn/hunghd/flutter/plugins/imagecropper/ImageCropperDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/src/main/java/vn/hunghd/flutter/plugins/imagecropper/ImageCropperDelegate.java -------------------------------------------------------------------------------- /image_cropper/android/src/main/java/vn/hunghd/flutter/plugins/imagecropper/ImageCropperPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/android/src/main/java/vn/hunghd/flutter/plugins/imagecropper/ImageCropperPlugin.java -------------------------------------------------------------------------------- /image_cropper/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/.gitignore -------------------------------------------------------------------------------- /image_cropper/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/.metadata -------------------------------------------------------------------------------- /image_cropper/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/README.md -------------------------------------------------------------------------------- /image_cropper/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/analysis_options.yaml -------------------------------------------------------------------------------- /image_cropper/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/.gitignore -------------------------------------------------------------------------------- /image_cropper/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/build.gradle -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/kotlin/com/example/image_cropper_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/kotlin/com/example/image_cropper_example/MainActivity.kt -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /image_cropper/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /image_cropper/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/build.gradle -------------------------------------------------------------------------------- /image_cropper/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/gradle.properties -------------------------------------------------------------------------------- /image_cropper/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /image_cropper/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/android/settings.gradle -------------------------------------------------------------------------------- /image_cropper/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/.gitignore -------------------------------------------------------------------------------- /image_cropper/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /image_cropper/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /image_cropper/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /image_cropper/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Podfile -------------------------------------------------------------------------------- /image_cropper/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Podfile.lock -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /image_cropper/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /image_cropper/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/lib/main.dart -------------------------------------------------------------------------------- /image_cropper/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/pubspec.yaml -------------------------------------------------------------------------------- /image_cropper/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/web/favicon.png -------------------------------------------------------------------------------- /image_cropper/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /image_cropper/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /image_cropper/example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /image_cropper/example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /image_cropper/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/web/index.html -------------------------------------------------------------------------------- /image_cropper/example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/example/web/manifest.json -------------------------------------------------------------------------------- /image_cropper/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/ios/.gitignore -------------------------------------------------------------------------------- /image_cropper/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_cropper/ios/image_cropper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/ios/image_cropper.podspec -------------------------------------------------------------------------------- /image_cropper/ios/image_cropper/.gitignore: -------------------------------------------------------------------------------- 1 | .build/ 2 | -------------------------------------------------------------------------------- /image_cropper/ios/image_cropper/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/ios/image_cropper/Package.resolved -------------------------------------------------------------------------------- /image_cropper/ios/image_cropper/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/ios/image_cropper/Package.swift -------------------------------------------------------------------------------- /image_cropper/ios/image_cropper/Sources/image_cropper/FLTImageCropperPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/ios/image_cropper/Sources/image_cropper/FLTImageCropperPlugin.m -------------------------------------------------------------------------------- /image_cropper/ios/image_cropper/Sources/image_cropper/include/image_cropper/FLTImageCropperPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/ios/image_cropper/Sources/image_cropper/include/image_cropper/FLTImageCropperPlugin.h -------------------------------------------------------------------------------- /image_cropper/lib/image_cropper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/lib/image_cropper.dart -------------------------------------------------------------------------------- /image_cropper/lib/src/cropper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/lib/src/cropper.dart -------------------------------------------------------------------------------- /image_cropper/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/pubspec.yaml -------------------------------------------------------------------------------- /image_cropper/screenshots/cropper_android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/screenshots/cropper_android.gif -------------------------------------------------------------------------------- /image_cropper/screenshots/cropper_ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/screenshots/cropper_ios.gif -------------------------------------------------------------------------------- /image_cropper/screenshots/cropper_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper/screenshots/cropper_web.png -------------------------------------------------------------------------------- /image_cropper_for_web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/.gitignore -------------------------------------------------------------------------------- /image_cropper_for_web/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/.metadata -------------------------------------------------------------------------------- /image_cropper_for_web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/.vscode/launch.json -------------------------------------------------------------------------------- /image_cropper_for_web/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/CHANGELOG.md -------------------------------------------------------------------------------- /image_cropper_for_web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/LICENSE -------------------------------------------------------------------------------- /image_cropper_for_web/README.md: -------------------------------------------------------------------------------- 1 | Web implementation for the `image_cropper` plugin. -------------------------------------------------------------------------------- /image_cropper_for_web/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/analysis_options.yaml -------------------------------------------------------------------------------- /image_cropper_for_web/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/.gitignore -------------------------------------------------------------------------------- /image_cropper_for_web/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/.metadata -------------------------------------------------------------------------------- /image_cropper_for_web/example/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/.vscode/launch.json -------------------------------------------------------------------------------- /image_cropper_for_web/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/README.md -------------------------------------------------------------------------------- /image_cropper_for_web/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/analysis_options.yaml -------------------------------------------------------------------------------- /image_cropper_for_web/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/lib/main.dart -------------------------------------------------------------------------------- /image_cropper_for_web/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/pubspec.yaml -------------------------------------------------------------------------------- /image_cropper_for_web/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/web/favicon.png -------------------------------------------------------------------------------- /image_cropper_for_web/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /image_cropper_for_web/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /image_cropper_for_web/example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /image_cropper_for_web/example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /image_cropper_for_web/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/web/index.html -------------------------------------------------------------------------------- /image_cropper_for_web/example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/example/web/manifest.json -------------------------------------------------------------------------------- /image_cropper_for_web/lib/image_cropper_for_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/lib/image_cropper_for_web.dart -------------------------------------------------------------------------------- /image_cropper_for_web/lib/src/cropper_actionbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/lib/src/cropper_actionbar.dart -------------------------------------------------------------------------------- /image_cropper_for_web/lib/src/cropper_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/lib/src/cropper_dialog.dart -------------------------------------------------------------------------------- /image_cropper_for_web/lib/src/cropper_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/lib/src/cropper_page.dart -------------------------------------------------------------------------------- /image_cropper_for_web/lib/src/interop/cropper_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/lib/src/interop/cropper_interop.dart -------------------------------------------------------------------------------- /image_cropper_for_web/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_for_web/pubspec.yaml -------------------------------------------------------------------------------- /image_cropper_platform_interface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/.gitignore -------------------------------------------------------------------------------- /image_cropper_platform_interface/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/.metadata -------------------------------------------------------------------------------- /image_cropper_platform_interface/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/CHANGELOG.md -------------------------------------------------------------------------------- /image_cropper_platform_interface/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/LICENSE -------------------------------------------------------------------------------- /image_cropper_platform_interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/README.md -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/image_cropper_platform_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/image_cropper_platform_interface.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/method_channel/method_channel_image_cropper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/method_channel/method_channel_image_cropper.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/models/cropped_file/base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/models/cropped_file/base.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/models/cropped_file/cropped_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/models/cropped_file/cropped_file.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/models/cropped_file/html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/models/cropped_file/html.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/models/cropped_file/io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/models/cropped_file/io.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/models/cropped_file/unsupported.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/models/cropped_file/unsupported.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/models/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/models/settings.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/platform_interface/image_cropper_platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/platform_interface/image_cropper_platform.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/lib/src/utils.dart -------------------------------------------------------------------------------- /image_cropper_platform_interface/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnvn/flutter_image_cropper/HEAD/image_cropper_platform_interface/pubspec.yaml -------------------------------------------------------------------------------- /image_cropper_platform_interface/test/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------