├── .github └── workflows │ ├── melos-version.yml │ ├── publish_on_tag.yml │ ├── runnable.yml │ ├── try-add-to-new-project.yml │ └── try_publish.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── README.md ├── blendmode.numbers ├── image_editor ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── fluttercandies │ │ │ │ │ └── flutter_image_editor_example │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ ├── 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 │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── assets │ │ ├── dst.png │ │ ├── have-exif-3.jpg │ │ ├── icon.png │ │ └── src.png │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── 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 │ │ ├── add_text_page.dart │ │ ├── advanced_page.dart │ │ ├── const │ │ │ └── resource.dart │ │ ├── draw_example_page.dart │ │ ├── home_page.dart │ │ ├── main.dart │ │ ├── merge_image_page.dart │ │ ├── mix_image_page.dart │ │ ├── utils │ │ │ └── time_utils.dart │ │ └── widget │ │ │ ├── clip_widget.dart │ │ │ ├── examples.dart │ │ │ ├── expand_container.dart │ │ │ ├── flip_widget.dart │ │ │ ├── rotate_widget.dart │ │ │ └── scale_widget.dart │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ ├── pubspec.lock │ ├── pubspec.yaml │ └── pubspec_overrides.yaml ├── lib │ └── image_editor.dart ├── pubspec.yaml └── pubspec_overrides.yaml ├── image_editor_common ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── fluttercandies │ │ └── image_editor │ │ ├── ImageEditorPlugin.kt │ │ ├── common │ │ └── font │ │ │ └── FontUtils.java │ │ ├── core │ │ ├── BitmapWrapper.kt │ │ ├── HandleExtension.kt │ │ ├── ImageHandler.kt │ │ ├── ImageMerger.kt │ │ └── ResultHandler.kt │ │ ├── error │ │ └── BitmapDecodeException.kt │ │ ├── option │ │ ├── AddTextOpt.kt │ │ ├── ClipOption.kt │ │ ├── ColorOption.kt │ │ ├── FlipOption.kt │ │ ├── FormatOption.kt │ │ ├── MergeOption.kt │ │ ├── MixImageOpt.kt │ │ ├── Option.kt │ │ ├── RotateOption.kt │ │ ├── ScaleOption.kt │ │ └── draw │ │ │ ├── DrawOption.kt │ │ │ ├── DrawPart.kt │ │ │ └── PathPart.kt │ │ └── util │ │ └── ConvertUtils.kt ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ ├── EditorUIImageHandler.h │ │ ├── EditorUIImageHandler.m │ │ ├── FIConvertUtils.h │ │ ├── FIConvertUtils.m │ │ ├── FIEPlugin.h │ │ ├── FIEPlugin.m │ │ ├── FIMerger.h │ │ ├── FIMerger.m │ │ ├── ImageEditorPlugin.h │ │ └── ImageEditorPlugin.m │ └── image_editor_common.podspec ├── lib │ └── image_editor_common.dart ├── macos │ ├── Classes │ │ ├── FICommonUtils.h │ │ ├── FICommonUtils.m │ │ ├── FIConvertUtils.h │ │ ├── FIConvertUtils.m │ │ ├── FIEPlugin.h │ │ ├── FIEPlugin.m │ │ ├── FIImport.h │ │ ├── FIMerger.h │ │ ├── FIMerger.m │ │ ├── FIUIImageHandler.h │ │ ├── FIUIImageHandler.m │ │ ├── ImageEditorPlugin.h │ │ └── ImageEditorPlugin.m │ └── image_editor_common.podspec ├── pubspec.yaml └── pubspec_overrides.yaml ├── image_editor_ohos ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ ├── .gitignore │ ├── README.md │ ├── analysis_options.yaml │ ├── assets │ │ ├── dst.png │ │ ├── have-exif-3.jpg │ │ ├── icon.png │ │ └── src.png │ ├── lib │ │ └── main.dart │ ├── ohos │ │ ├── .gitignore │ │ ├── AppScope │ │ │ ├── app.json5 │ │ │ └── resources │ │ │ │ └── base │ │ │ │ ├── element │ │ │ │ └── string.json │ │ │ │ └── media │ │ │ │ └── app_icon.png │ │ ├── build-profile.json5 │ │ ├── entry │ │ │ ├── .gitignore │ │ │ ├── build-profile.json5 │ │ │ ├── hvigorfile.ts │ │ │ ├── oh-package.json5 │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── ets │ │ │ │ ├── entryability │ │ │ │ │ └── EntryAbility.ets │ │ │ │ ├── pages │ │ │ │ │ └── Index.ets │ │ │ │ └── plugins │ │ │ │ │ └── GeneratedPluginRegistrant.ets │ │ │ │ ├── module.json5 │ │ │ │ └── resources │ │ │ │ ├── base │ │ │ │ ├── element │ │ │ │ │ ├── color.json │ │ │ │ │ └── string.json │ │ │ │ ├── media │ │ │ │ │ └── icon.png │ │ │ │ └── profile │ │ │ │ │ └── main_pages.json │ │ │ │ ├── en_US │ │ │ │ └── element │ │ │ │ │ └── string.json │ │ │ │ └── zh_CN │ │ │ │ └── element │ │ │ │ └── string.json │ │ ├── hvigor │ │ │ ├── hvigor-config.json5 │ │ │ └── hvigor-wrapper.js │ │ ├── hvigorfile.ts │ │ ├── hvigorw │ │ ├── hvigorw.bat │ │ └── oh-package.json5 │ ├── pubspec.yaml │ └── pubspec_overrides.yaml ├── lib │ └── image_editor_ohos.dart ├── ohos │ ├── .gitignore │ ├── build-profile.json5 │ ├── hvigorfile.ts │ ├── index.ets │ ├── oh-package.json5 │ └── src │ │ └── main │ │ ├── ets │ │ └── components │ │ │ └── plugin │ │ │ ├── ImageEditorOhosPlugin.ets │ │ │ ├── mode │ │ │ └── Offset.ets │ │ │ ├── option │ │ │ ├── AddTextOption.ets │ │ │ ├── ClipOption.ets │ │ │ ├── ColorOption.ets │ │ │ ├── DrawOption.ets │ │ │ ├── FlipOption.ets │ │ │ ├── FormatOption.ets │ │ │ ├── ImageMergeOption.ets │ │ │ ├── MixImageOption.ets │ │ │ ├── Option.ets │ │ │ ├── RotateOption.ets │ │ │ └── ScaleOption.ets │ │ │ └── util │ │ │ ├── EnumUtils.ets │ │ │ ├── ImageUtils.ets │ │ │ └── MapUtils.ets │ │ └── module.json5 ├── pubspec.yaml └── pubspec_overrides.yaml ├── image_editor_platform_interface ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ ├── image_editor_platform_interface.dart │ └── src │ │ ├── channel.dart │ │ ├── convert_value.dart │ │ ├── editor.dart │ │ ├── error.dart │ │ ├── font_manager.dart │ │ ├── image_handler.dart │ │ ├── image_source.dart │ │ ├── interfaces │ │ └── image_editor.dart │ │ ├── merge │ │ └── merge_option.dart │ │ ├── option │ │ ├── add_text.dart │ │ ├── clip.dart │ │ ├── color.dart │ │ ├── draw.dart │ │ ├── edit_options.dart │ │ ├── flip.dart │ │ ├── mix_image.dart │ │ ├── rotate.dart │ │ └── scale.dart │ │ ├── output_format.dart │ │ ├── position.dart │ │ ├── type.dart │ │ └── utils │ │ └── convert_utils.dart ├── pubspec.yaml └── test │ └── color_option_test.dart ├── melos.yaml ├── platform_interface.md ├── publish.py ├── pubspec.lock ├── pubspec.yaml └── runnable.sh /.github/workflows/melos-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/.github/workflows/melos-version.yml -------------------------------------------------------------------------------- /.github/workflows/publish_on_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/.github/workflows/publish_on_tag.yml -------------------------------------------------------------------------------- /.github/workflows/runnable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/.github/workflows/runnable.yml -------------------------------------------------------------------------------- /.github/workflows/try-add-to-new-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/.github/workflows/try-add-to-new-project.yml -------------------------------------------------------------------------------- /.github/workflows/try_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/.github/workflows/try_publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .idea/ 3 | .vscode/ 4 | .dart_tool 5 | *.iml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @CaiJingLong @zmtzawqlp 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | image_editor/README.md -------------------------------------------------------------------------------- /blendmode.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/blendmode.numbers -------------------------------------------------------------------------------- /image_editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/.gitignore -------------------------------------------------------------------------------- /image_editor/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/.metadata -------------------------------------------------------------------------------- /image_editor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/CHANGELOG.md -------------------------------------------------------------------------------- /image_editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/LICENSE -------------------------------------------------------------------------------- /image_editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/README.md -------------------------------------------------------------------------------- /image_editor/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/analysis_options.yaml -------------------------------------------------------------------------------- /image_editor/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/.gitignore -------------------------------------------------------------------------------- /image_editor/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/.metadata -------------------------------------------------------------------------------- /image_editor/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/README.md -------------------------------------------------------------------------------- /image_editor/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/analysis_options.yaml -------------------------------------------------------------------------------- /image_editor/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/.gitignore -------------------------------------------------------------------------------- /image_editor/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/build.gradle -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/kotlin/com/fluttercandies/flutter_image_editor_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/kotlin/com/fluttercandies/flutter_image_editor_example/MainActivity.kt -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /image_editor/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /image_editor/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/build.gradle -------------------------------------------------------------------------------- /image_editor/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/gradle.properties -------------------------------------------------------------------------------- /image_editor/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /image_editor/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/android/settings.gradle -------------------------------------------------------------------------------- /image_editor/example/assets/dst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/assets/dst.png -------------------------------------------------------------------------------- /image_editor/example/assets/have-exif-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/assets/have-exif-3.jpg -------------------------------------------------------------------------------- /image_editor/example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/assets/icon.png -------------------------------------------------------------------------------- /image_editor/example/assets/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/assets/src.png -------------------------------------------------------------------------------- /image_editor/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/.gitignore -------------------------------------------------------------------------------- /image_editor/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /image_editor/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /image_editor/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /image_editor/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Podfile -------------------------------------------------------------------------------- /image_editor/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /image_editor/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /image_editor/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /image_editor/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /image_editor/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /image_editor/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /image_editor/example/lib/add_text_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/add_text_page.dart -------------------------------------------------------------------------------- /image_editor/example/lib/advanced_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/advanced_page.dart -------------------------------------------------------------------------------- /image_editor/example/lib/const/resource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/const/resource.dart -------------------------------------------------------------------------------- /image_editor/example/lib/draw_example_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/draw_example_page.dart -------------------------------------------------------------------------------- /image_editor/example/lib/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/home_page.dart -------------------------------------------------------------------------------- /image_editor/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/main.dart -------------------------------------------------------------------------------- /image_editor/example/lib/merge_image_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/merge_image_page.dart -------------------------------------------------------------------------------- /image_editor/example/lib/mix_image_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/mix_image_page.dart -------------------------------------------------------------------------------- /image_editor/example/lib/utils/time_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/utils/time_utils.dart -------------------------------------------------------------------------------- /image_editor/example/lib/widget/clip_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/widget/clip_widget.dart -------------------------------------------------------------------------------- /image_editor/example/lib/widget/examples.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/widget/examples.dart -------------------------------------------------------------------------------- /image_editor/example/lib/widget/expand_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/widget/expand_container.dart -------------------------------------------------------------------------------- /image_editor/example/lib/widget/flip_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/widget/flip_widget.dart -------------------------------------------------------------------------------- /image_editor/example/lib/widget/rotate_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/widget/rotate_widget.dart -------------------------------------------------------------------------------- /image_editor/example/lib/widget/scale_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/lib/widget/scale_widget.dart -------------------------------------------------------------------------------- /image_editor/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/.gitignore -------------------------------------------------------------------------------- /image_editor/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /image_editor/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /image_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /image_editor/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Podfile -------------------------------------------------------------------------------- /image_editor/example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /image_editor/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /image_editor/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /image_editor/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /image_editor/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /image_editor/example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /image_editor/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/pubspec.lock -------------------------------------------------------------------------------- /image_editor/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/pubspec.yaml -------------------------------------------------------------------------------- /image_editor/example/pubspec_overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/example/pubspec_overrides.yaml -------------------------------------------------------------------------------- /image_editor/lib/image_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/lib/image_editor.dart -------------------------------------------------------------------------------- /image_editor/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/pubspec.yaml -------------------------------------------------------------------------------- /image_editor/pubspec_overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor/pubspec_overrides.yaml -------------------------------------------------------------------------------- /image_editor_common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/.gitignore -------------------------------------------------------------------------------- /image_editor_common/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/.metadata -------------------------------------------------------------------------------- /image_editor_common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/CHANGELOG.md -------------------------------------------------------------------------------- /image_editor_common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/LICENSE -------------------------------------------------------------------------------- /image_editor_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/README.md -------------------------------------------------------------------------------- /image_editor_common/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/analysis_options.yaml -------------------------------------------------------------------------------- /image_editor_common/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/.gitignore -------------------------------------------------------------------------------- /image_editor_common/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/build.gradle -------------------------------------------------------------------------------- /image_editor_common/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/gradle.properties -------------------------------------------------------------------------------- /image_editor_common/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /image_editor_common/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'image_editor' 2 | -------------------------------------------------------------------------------- /image_editor_common/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/ImageEditorPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/ImageEditorPlugin.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/common/font/FontUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/common/font/FontUtils.java -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/BitmapWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/BitmapWrapper.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/HandleExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/HandleExtension.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/ImageHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/ImageHandler.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/ImageMerger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/ImageMerger.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/ResultHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/core/ResultHandler.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/error/BitmapDecodeException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/error/BitmapDecodeException.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/AddTextOpt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/AddTextOpt.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/ClipOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/ClipOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/ColorOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/ColorOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/FlipOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/FlipOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/FormatOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/FormatOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/MergeOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/MergeOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/MixImageOpt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/MixImageOpt.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/Option.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/Option.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/RotateOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/RotateOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/ScaleOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/ScaleOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/draw/DrawOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/draw/DrawOption.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/draw/DrawPart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/draw/DrawPart.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/draw/PathPart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/option/draw/PathPart.kt -------------------------------------------------------------------------------- /image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/util/ConvertUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/android/src/main/kotlin/com/fluttercandies/image_editor/util/ConvertUtils.kt -------------------------------------------------------------------------------- /image_editor_common/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/.gitignore -------------------------------------------------------------------------------- /image_editor_common/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/EditorUIImageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/EditorUIImageHandler.h -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/EditorUIImageHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/EditorUIImageHandler.m -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/FIConvertUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/FIConvertUtils.h -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/FIConvertUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/FIConvertUtils.m -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/FIEPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/FIEPlugin.h -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/FIEPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/FIEPlugin.m -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/FIMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/FIMerger.h -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/FIMerger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/FIMerger.m -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/ImageEditorPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/ImageEditorPlugin.h -------------------------------------------------------------------------------- /image_editor_common/ios/Classes/ImageEditorPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/Classes/ImageEditorPlugin.m -------------------------------------------------------------------------------- /image_editor_common/ios/image_editor_common.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/ios/image_editor_common.podspec -------------------------------------------------------------------------------- /image_editor_common/lib/image_editor_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/lib/image_editor_common.dart -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FICommonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FICommonUtils.h -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FICommonUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FICommonUtils.m -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIConvertUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIConvertUtils.h -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIConvertUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIConvertUtils.m -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIEPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIEPlugin.h -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIEPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIEPlugin.m -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIImport.h -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIMerger.h -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIMerger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIMerger.m -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIUIImageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIUIImageHandler.h -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/FIUIImageHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/FIUIImageHandler.m -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/ImageEditorPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/ImageEditorPlugin.h -------------------------------------------------------------------------------- /image_editor_common/macos/Classes/ImageEditorPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/Classes/ImageEditorPlugin.m -------------------------------------------------------------------------------- /image_editor_common/macos/image_editor_common.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/macos/image_editor_common.podspec -------------------------------------------------------------------------------- /image_editor_common/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/pubspec.yaml -------------------------------------------------------------------------------- /image_editor_common/pubspec_overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_common/pubspec_overrides.yaml -------------------------------------------------------------------------------- /image_editor_ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/.gitignore -------------------------------------------------------------------------------- /image_editor_ohos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/CHANGELOG.md -------------------------------------------------------------------------------- /image_editor_ohos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/LICENSE -------------------------------------------------------------------------------- /image_editor_ohos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/README.md -------------------------------------------------------------------------------- /image_editor_ohos/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/analysis_options.yaml -------------------------------------------------------------------------------- /image_editor_ohos/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/.gitignore -------------------------------------------------------------------------------- /image_editor_ohos/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/README.md -------------------------------------------------------------------------------- /image_editor_ohos/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/analysis_options.yaml -------------------------------------------------------------------------------- /image_editor_ohos/example/assets/dst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/assets/dst.png -------------------------------------------------------------------------------- /image_editor_ohos/example/assets/have-exif-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/assets/have-exif-3.jpg -------------------------------------------------------------------------------- /image_editor_ohos/example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/assets/icon.png -------------------------------------------------------------------------------- /image_editor_ohos/example/assets/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/assets/src.png -------------------------------------------------------------------------------- /image_editor_ohos/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/lib/main.dart -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/.gitignore -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/AppScope/app.json5 -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/build-profile.json5 -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/.gitignore -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/build-profile.json5 -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/hvigorfile.ts -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/oh-package.json5 -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/ets/plugins/GeneratedPluginRegistrant.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/ets/plugins/GeneratedPluginRegistrant.ets -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/module.json5 -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/resources/base/media/icon.png -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/entry/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/entry/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/hvigor/hvigor-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/hvigor/hvigor-wrapper.js -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/hvigorfile.ts -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/hvigorw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/hvigorw -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/hvigorw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/hvigorw.bat -------------------------------------------------------------------------------- /image_editor_ohos/example/ohos/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/ohos/oh-package.json5 -------------------------------------------------------------------------------- /image_editor_ohos/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/pubspec.yaml -------------------------------------------------------------------------------- /image_editor_ohos/example/pubspec_overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/example/pubspec_overrides.yaml -------------------------------------------------------------------------------- /image_editor_ohos/lib/image_editor_ohos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/lib/image_editor_ohos.dart -------------------------------------------------------------------------------- /image_editor_ohos/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/.gitignore -------------------------------------------------------------------------------- /image_editor_ohos/ohos/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/build-profile.json5 -------------------------------------------------------------------------------- /image_editor_ohos/ohos/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/hvigorfile.ts -------------------------------------------------------------------------------- /image_editor_ohos/ohos/index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/index.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/oh-package.json5 -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/ImageEditorOhosPlugin.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/ImageEditorOhosPlugin.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/mode/Offset.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/mode/Offset.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/AddTextOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/AddTextOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/ClipOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/ClipOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/ColorOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/ColorOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/DrawOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/DrawOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/FlipOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/FlipOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/FormatOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/FormatOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/ImageMergeOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/ImageMergeOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/MixImageOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/MixImageOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/Option.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/Option.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/RotateOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/RotateOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/option/ScaleOption.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/option/ScaleOption.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/util/EnumUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/util/EnumUtils.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/util/ImageUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/util/ImageUtils.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/ets/components/plugin/util/MapUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/ets/components/plugin/util/MapUtils.ets -------------------------------------------------------------------------------- /image_editor_ohos/ohos/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/ohos/src/main/module.json5 -------------------------------------------------------------------------------- /image_editor_ohos/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/pubspec.yaml -------------------------------------------------------------------------------- /image_editor_ohos/pubspec_overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_ohos/pubspec_overrides.yaml -------------------------------------------------------------------------------- /image_editor_platform_interface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/.gitignore -------------------------------------------------------------------------------- /image_editor_platform_interface/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/.metadata -------------------------------------------------------------------------------- /image_editor_platform_interface/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/CHANGELOG.md -------------------------------------------------------------------------------- /image_editor_platform_interface/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/LICENSE -------------------------------------------------------------------------------- /image_editor_platform_interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/README.md -------------------------------------------------------------------------------- /image_editor_platform_interface/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/analysis_options.yaml -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/image_editor_platform_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/image_editor_platform_interface.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/channel.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/convert_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/convert_value.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/editor.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/error.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/font_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/font_manager.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/image_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/image_handler.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/image_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/image_source.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/interfaces/image_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/interfaces/image_editor.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/merge/merge_option.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/merge/merge_option.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/add_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/add_text.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/clip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/clip.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/color.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/draw.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/draw.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/edit_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/edit_options.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/flip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/flip.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/mix_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/mix_image.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/rotate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/rotate.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/option/scale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/option/scale.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/output_format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/output_format.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/position.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/type.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/lib/src/utils/convert_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/lib/src/utils/convert_utils.dart -------------------------------------------------------------------------------- /image_editor_platform_interface/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/pubspec.yaml -------------------------------------------------------------------------------- /image_editor_platform_interface/test/color_option_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/image_editor_platform_interface/test/color_option_test.dart -------------------------------------------------------------------------------- /melos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/melos.yaml -------------------------------------------------------------------------------- /platform_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/platform_interface.md -------------------------------------------------------------------------------- /publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/publish.py -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /runnable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/flutter_image_editor/HEAD/runnable.sh --------------------------------------------------------------------------------