├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── plugin_request.yaml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── analyze.yml │ └── commitlint.yml ├── .gitignore ├── LICENSE ├── README.md ├── melos.yaml ├── packages └── appflowy_editor_plugins │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── assets │ │ └── RobotoMono-Regular.ttf │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ └── main.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── 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 │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── web │ │ ├── favicon.png │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ ├── Icon-512.png │ │ │ ├── Icon-maskable-192.png │ │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h │ ├── lib │ ├── appflowy_editor_plugins.dart │ └── src │ │ ├── code_block │ │ ├── code_block_actions.dart │ │ ├── code_block_block_component.dart │ │ ├── code_block_localization.dart │ │ ├── code_block_shortcuts.dart │ │ ├── code_block_style.dart │ │ ├── code_block_themes.dart │ │ └── plugin.dart │ │ ├── link_preview │ │ ├── link_preview_block_component.dart │ │ ├── link_preview_parser.dart │ │ ├── link_preview_shortcuts.dart │ │ └── plugin.dart │ │ ├── plugins.dart │ │ ├── utils │ │ └── string_ext.dart │ │ └── video_block │ │ ├── instructions.md │ │ ├── plugin.dart │ │ ├── resizable_video_player.dart │ │ ├── video_block_component.dart │ │ └── video_block_menu.dart │ └── pubspec.yaml ├── pubspec.lock └── pubspec.yaml /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/plugin_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/.github/ISSUE_TEMPLATE/plugin_request.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/.github/workflows/analyze.yml -------------------------------------------------------------------------------- /.github/workflows/commitlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/.github/workflows/commitlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/README.md -------------------------------------------------------------------------------- /melos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/melos.yaml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/.gitignore -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/.metadata -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/CHANGELOG.md -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/LICENSE -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/README.md -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/analysis_options.yaml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/.gitignore -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/.metadata -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/README.md -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/.gitignore -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/build.gradle -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/build.gradle -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/gradle.properties -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/android/settings.gradle -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/assets/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/assets/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Podfile -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/lib/main.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/main.cc -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/my_application.cc -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/linux/my_application.h -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Podfile -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Podfile.lock -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/pubspec.lock -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/web/favicon.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/web/index.html -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/web/manifest.json -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/.gitignore -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/resource.h -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/utils.h -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/appflowy_editor_plugins.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/appflowy_editor_plugins.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/code_block/code_block_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/code_block/code_block_actions.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/code_block/code_block_block_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/code_block/code_block_block_component.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/code_block/code_block_localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/code_block/code_block_localization.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/code_block/code_block_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/code_block/code_block_shortcuts.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/code_block/code_block_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/code_block/code_block_style.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/code_block/code_block_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/code_block/code_block_themes.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/code_block/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/code_block/plugin.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/link_preview/link_preview_block_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/link_preview/link_preview_block_component.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/link_preview/link_preview_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/link_preview/link_preview_parser.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/link_preview/link_preview_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/link_preview/link_preview_shortcuts.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/link_preview/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/link_preview/plugin.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/plugins.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/plugins.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/utils/string_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/utils/string_ext.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/video_block/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/video_block/instructions.md -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/video_block/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/video_block/plugin.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/video_block/resizable_video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/video_block/resizable_video_player.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/video_block/video_block_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/video_block/video_block_component.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/lib/src/video_block/video_block_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/lib/src/video_block/video_block_menu.dart -------------------------------------------------------------------------------- /packages/appflowy_editor_plugins/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/packages/appflowy_editor_plugins/pubspec.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppFlowy-IO/AppFlowy-Plugins/HEAD/pubspec.yaml --------------------------------------------------------------------------------