├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build_and_release_docs_website.yaml │ ├── build_clones.yaml │ ├── cherry_pick_to_stable.yaml │ └── pr_validation.yaml ├── .gitignore ├── LICENSE ├── README.md ├── README_FUNDING.md ├── attributed_text ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ ├── attributed_text.dart │ └── src │ │ ├── attributed_spans.dart │ │ ├── attributed_text.dart │ │ ├── attribution.dart │ │ ├── logging.dart │ │ ├── span_range.dart │ │ ├── test_tools.dart │ │ └── text_tools.dart ├── pubspec.yaml └── test │ ├── attributed_spans_test.dart │ ├── attributed_text_placeholders_test.dart │ ├── attributed_text_test.dart │ └── test_tools.dart ├── doc └── website │ ├── .gitignore │ ├── analysis_options.yaml │ ├── bin │ └── super_editor_docs.dart │ ├── design-assets │ ├── funders │ │ ├── bringing-fire_logo.jpg │ │ ├── clearful_logo.png │ │ ├── reflection_logo.png │ │ ├── superlist_logo.png │ │ └── turtle_logo.png │ ├── homepage.psd │ └── logos.psd │ ├── pubspec.lock │ ├── pubspec.yaml │ └── source │ ├── _data.yaml │ ├── _includes │ ├── components │ │ ├── bootstrapJs.jinja │ │ ├── codeSample.jinja │ │ ├── favicon.jinja │ │ ├── fontAwesome.jinja │ │ ├── footer.jinja │ │ ├── funders.jinja │ │ ├── highlightJs.jinja │ │ ├── innerPageHeader.jinja │ │ ├── navMain.jinja │ │ └── navbar.jinja │ └── layouts │ │ └── docs_page.jinja │ ├── contributing │ ├── _data.yaml │ ├── index.md │ └── quickstart.md │ ├── dev │ └── style-guide.md │ ├── images │ ├── branding │ │ └── logo.png │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── fbh_logo.png │ ├── funders │ │ ├── bringing-fire.png │ │ ├── clearful.png │ │ ├── clickup.png │ │ ├── reflection.png │ │ ├── superlist.png │ │ └── turtle.png │ ├── icons │ │ ├── bxl-discord-alt.svg │ │ ├── bxl-flutter.svg │ │ └── bxl-github.svg │ ├── logo_big.png │ └── logo_small.png │ ├── index.jinja │ ├── styles │ ├── about.scss │ ├── base_layout.scss │ ├── docs_page_layout.scss │ ├── docs_page_layout_dark.scss │ ├── docs_page_layout_light.scss │ ├── funders.scss │ ├── homepage.scss │ ├── theme.scss │ └── typography.scss │ ├── super-editor │ └── guides │ │ ├── _data.yaml │ │ ├── ai │ │ ├── fade-in-content.md │ │ └── overview.md │ │ ├── basics │ │ ├── build-an-editor.md │ │ └── show-a-hint.md │ │ ├── built-in-content │ │ ├── blockquotes.md │ │ ├── headers.md │ │ ├── horizontal-rules.md │ │ ├── images.md │ │ ├── list-items.md │ │ ├── paragraphs.md │ │ └── tasks.md │ │ ├── chat │ │ ├── keyboard-toolbar.md │ │ ├── overview.md │ │ └── screen-scaffold.md │ │ ├── custom-content │ │ └── add-new-type-of-content.md │ │ ├── custom-rules │ │ └── undeletable-content.md │ │ ├── document-editors │ │ └── overview.md │ │ ├── editing-ui │ │ ├── add-a-mobile-keyboard-toolbar.md │ │ ├── add-a-popover-toolbar.md │ │ └── overlay-controls.md │ │ ├── getting-started │ │ ├── quickstart.md │ │ └── tour.md │ │ ├── index.md │ │ ├── markdown │ │ ├── as-you-type.md │ │ ├── export.md │ │ └── import.md │ │ ├── quill │ │ ├── export.md │ │ ├── import.md │ │ └── multi-player.md │ │ ├── styling │ │ ├── dark-mode-and-light-mode.md │ │ ├── style-a-document.md │ │ └── text-underlines.md │ │ └── viewport │ │ ├── auto-scrolling.md │ │ └── embed-in-a-scrollview.md │ ├── super-reader │ └── guides │ │ ├── _data.yaml │ │ ├── index.md │ │ └── quickstart.md │ └── super-text-field │ └── guides │ ├── _data.yaml │ ├── index.md │ └── quickstart.md ├── flutter_test_registry ├── flutter_test_repo_test.bat └── flutter_test_repo_test.sh ├── golden_runner ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin │ └── goldens.dart ├── lib │ ├── golden_runner.dart │ └── src │ │ └── commands.dart └── pubspec.yaml ├── golden_tester.Dockerfile ├── super_clones ├── bear │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── app.dart │ │ ├── features │ │ │ └── home_screen.dart │ │ ├── infrastructure │ │ │ └── editor │ │ │ │ ├── components.dart │ │ │ │ ├── editor.dart │ │ │ │ └── stylesheet.dart │ │ └── main.dart │ ├── 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 ├── google_docs │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── example_docs │ │ │ │ │ │ └── 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 │ │ └── images │ │ │ └── docs_logo.png │ ├── 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 │ │ ├── app.dart │ │ ├── app_menu.dart │ │ ├── editor.dart │ │ ├── infrastructure │ │ │ ├── color_selector.dart │ │ │ ├── icon_selector.dart │ │ │ ├── increment_decrement_field.dart │ │ │ ├── selectable_grid.dart │ │ │ └── text_item_selector.dart │ │ ├── main.dart │ │ ├── theme.dart │ │ └── toolbar.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 ├── ios_messenger │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── flutterbountyhunters │ │ │ │ │ │ └── clones │ │ │ │ │ │ └── iosmessenger │ │ │ │ │ │ └── ios_messenger │ │ │ │ │ │ └── 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.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle.kts │ ├── 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 │ │ ├── app.dart │ │ ├── conversation │ │ │ ├── chat_bubbles.dart │ │ │ └── conversation_screen.dart │ │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── medium │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ └── main.dart │ ├── 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 ├── obsidian │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── main.dart │ │ ├── sidebar.dart │ │ ├── tabbed_editor.dart │ │ ├── vault_menu.dart │ │ └── window.dart │ ├── 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 │ └── test │ │ └── widget_test.dart ├── quill │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── flutterbountyhunters │ │ │ │ │ │ └── feather │ │ │ │ │ │ └── feather │ │ │ │ │ │ └── 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 │ │ └── fonts │ │ │ ├── EB_Garamond │ │ │ ├── EBGaramond-Italic-VariableFont_wght.ttf │ │ │ ├── EBGaramond-VariableFont_wght.ttf │ │ │ ├── OFL.txt │ │ │ ├── README.txt │ │ │ └── static │ │ │ │ ├── EBGaramond-Bold.ttf │ │ │ │ ├── EBGaramond-BoldItalic.ttf │ │ │ │ ├── EBGaramond-ExtraBold.ttf │ │ │ │ ├── EBGaramond-ExtraBoldItalic.ttf │ │ │ │ ├── EBGaramond-Italic.ttf │ │ │ │ ├── EBGaramond-Medium.ttf │ │ │ │ ├── EBGaramond-MediumItalic.ttf │ │ │ │ ├── EBGaramond-Regular.ttf │ │ │ │ ├── EBGaramond-SemiBold.ttf │ │ │ │ └── EBGaramond-SemiBoldItalic.ttf │ │ │ ├── Fira_Mono │ │ │ ├── FiraMono-Bold.ttf │ │ │ ├── FiraMono-Medium.ttf │ │ │ ├── FiraMono-Regular.ttf │ │ │ └── OFL.txt │ │ │ └── Open_Sans │ │ │ ├── OFL.txt │ │ │ ├── OpenSans-Italic-VariableFont_wdth,wght.ttf │ │ │ ├── OpenSans-VariableFont_wdth,wght.ttf │ │ │ ├── README.txt │ │ │ └── static │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ ├── OpenSans-Medium.ttf │ │ │ ├── OpenSans-MediumItalic.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-SemiBold.ttf │ │ │ ├── OpenSans-SemiBoldItalic.ttf │ │ │ ├── OpenSans_Condensed-Bold.ttf │ │ │ ├── OpenSans_Condensed-BoldItalic.ttf │ │ │ ├── OpenSans_Condensed-ExtraBold.ttf │ │ │ ├── OpenSans_Condensed-ExtraBoldItalic.ttf │ │ │ ├── OpenSans_Condensed-Italic.ttf │ │ │ ├── OpenSans_Condensed-Light.ttf │ │ │ ├── OpenSans_Condensed-LightItalic.ttf │ │ │ ├── OpenSans_Condensed-Medium.ttf │ │ │ ├── OpenSans_Condensed-MediumItalic.ttf │ │ │ ├── OpenSans_Condensed-Regular.ttf │ │ │ ├── OpenSans_Condensed-SemiBold.ttf │ │ │ ├── OpenSans_Condensed-SemiBoldItalic.ttf │ │ │ ├── OpenSans_SemiCondensed-Bold.ttf │ │ │ ├── OpenSans_SemiCondensed-BoldItalic.ttf │ │ │ ├── OpenSans_SemiCondensed-ExtraBold.ttf │ │ │ ├── OpenSans_SemiCondensed-ExtraBoldItalic.ttf │ │ │ ├── OpenSans_SemiCondensed-Italic.ttf │ │ │ ├── OpenSans_SemiCondensed-Light.ttf │ │ │ ├── OpenSans_SemiCondensed-LightItalic.ttf │ │ │ ├── OpenSans_SemiCondensed-Medium.ttf │ │ │ ├── OpenSans_SemiCondensed-MediumItalic.ttf │ │ │ ├── OpenSans_SemiCondensed-Regular.ttf │ │ │ ├── OpenSans_SemiCondensed-SemiBold.ttf │ │ │ └── OpenSans_SemiCondensed-SemiBoldItalic.ttf │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ ├── app.dart │ │ ├── deltas │ │ │ └── deltas_display.dart │ │ ├── editor │ │ │ ├── blockquote_component.dart │ │ │ ├── code_component.dart │ │ │ ├── editor.dart │ │ │ └── toolbar.dart │ │ ├── infrastructure │ │ │ └── popovers │ │ │ │ ├── color_selector.dart │ │ │ │ ├── icon_selector.dart │ │ │ │ ├── selectable_grid.dart │ │ │ │ └── text_item_selector.dart │ │ ├── main.dart │ │ └── theme.dart │ ├── 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 │ ├── quill_js │ │ └── index.html │ ├── 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 └── slack │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── flutterbountyhunters │ │ │ │ │ └── clones │ │ │ │ │ └── slack │ │ │ │ │ └── slack │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift │ ├── lib │ ├── chat_thread.dart │ ├── domain │ │ ├── message.dart │ │ └── user.dart │ ├── fake_data │ │ ├── fake_messages.dart │ │ └── fake_users.dart │ ├── main.dart │ ├── mobile_message_editor.dart │ └── styles.dart │ ├── 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 ├── super_editor ├── .gitignore ├── .metadata ├── .run │ ├── Clone_ Quill.run.xml │ ├── Example - All Demos (debug).run.xml │ ├── Example - Chat.run.xml │ ├── Example - Docs (debug).run.xml │ ├── Example.run.xml │ ├── Flutter - Text Field.run.xml │ ├── Panel Behind Keyboard.run.xml │ ├── Super Editor - Chat Demo (Debug).run.xml │ ├── Super Editor Demo (debug).run.xml │ ├── Super Reader Demo (debug).run.xml │ └── Super Text Field (debug).run.xml ├── .vscode │ └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_RELEASING.md ├── README_TESTS.md ├── analysis_options.yaml ├── dart_test.yaml ├── doc │ └── marketing │ │ ├── readme-header.png │ │ ├── screenshot_mac_desktop.png │ │ ├── screenshot_mac_desktop_bold-selection.png │ │ ├── screenshot_mac_desktop_dark-mode.png │ │ └── screenshot_mac_desktop_text-selection.png ├── example │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── supereditor │ │ │ │ │ │ └── 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 │ │ ├── fonts │ │ │ └── Ubuntu_Mono │ │ │ │ ├── UFL.txt │ │ │ │ ├── UbuntuMono-Bold.ttf │ │ │ │ ├── UbuntuMono-BoldItalic.ttf │ │ │ │ ├── UbuntuMono-Italic.ttf │ │ │ │ └── UbuntuMono-Regular.ttf │ │ └── images │ │ │ └── superlist_logo.png │ ├── 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 │ ├── l10n.yaml │ ├── lib │ │ ├── demos │ │ │ ├── components │ │ │ │ ├── demo_text_with_hint.dart │ │ │ │ └── demo_unselectable_hr.dart │ │ │ ├── debugging │ │ │ │ └── simple_deltas_input.dart │ │ │ ├── demo_animated_task_height.dart │ │ │ ├── demo_app_shortcuts.dart │ │ │ ├── demo_attributed_text.dart │ │ │ ├── demo_document_loses_focus.dart │ │ │ ├── demo_empty_document.dart │ │ │ ├── demo_markdown_serialization.dart │ │ │ ├── demo_paragraphs.dart │ │ │ ├── demo_rtl.dart │ │ │ ├── demo_selectable_text.dart │ │ │ ├── demo_switch_document_content.dart │ │ │ ├── editor_configs │ │ │ │ ├── demo_mobile_editing_android.dart │ │ │ │ ├── demo_mobile_editing_ios.dart │ │ │ │ └── keyboard_overlay_clipper.dart │ │ │ ├── example_editor │ │ │ │ ├── _example_document.dart │ │ │ │ ├── _toolbar.dart │ │ │ │ └── example_editor.dart │ │ │ ├── flutter_features │ │ │ │ ├── demo_inline_widgets.dart │ │ │ │ └── textinputclient │ │ │ │ │ ├── barebones_ios_text_input_client.dart │ │ │ │ │ ├── basic_text_input_client.dart │ │ │ │ │ └── textfield.dart │ │ │ ├── in_the_lab │ │ │ │ ├── feature_action_tags.dart │ │ │ │ ├── feature_ai_fade_in.dart │ │ │ │ ├── feature_custom_underlines.dart │ │ │ │ ├── feature_ios_native_context_menu.dart │ │ │ │ ├── feature_pattern_tags.dart │ │ │ │ ├── feature_stable_tags.dart │ │ │ │ ├── in_the_lab_scaffold.dart │ │ │ │ ├── popover_list.dart │ │ │ │ ├── selected_text_colors_demo.dart │ │ │ │ └── spelling_error_decorations.dart │ │ │ ├── infrastructure │ │ │ │ └── super_editor_item_selector.dart │ │ │ ├── interaction_spot_checks │ │ │ │ ├── spot_check_scaffold.dart │ │ │ │ ├── toolbar_following_content_in_layer.dart │ │ │ │ └── url_launching_spot_checks.dart │ │ │ ├── mobile_chat │ │ │ │ ├── demo_mobile_chat.dart │ │ │ │ └── giphy_keyboard_panel.dart │ │ │ ├── scrolling │ │ │ │ └── demo_task_and_chat_with_customscrollview.dart │ │ │ ├── sliver_example_editor.dart │ │ │ ├── styles │ │ │ │ └── demo_doc_styles.dart │ │ │ ├── super_reader │ │ │ │ ├── demo_super_reader.dart │ │ │ │ ├── demo_super_reader_custom_scrollview.dart │ │ │ │ ├── demo_super_reader_listview.dart │ │ │ │ └── example_document.dart │ │ │ └── supertextfield │ │ │ │ ├── _emojis_demo.dart │ │ │ │ ├── _expanding_multi_line_demo.dart │ │ │ │ ├── _interactive_demo.dart │ │ │ │ ├── _mobile_style_bar.dart │ │ │ │ ├── _mobile_textfield_demo.dart │ │ │ │ ├── _robot.dart │ │ │ │ ├── _single_line_demo.dart │ │ │ │ ├── _static_multi_line_demo.dart │ │ │ │ ├── _textfield_demo_screen.dart │ │ │ │ ├── android │ │ │ │ └── demo_superandroidtextfield.dart │ │ │ │ ├── demo_text_styles.dart │ │ │ │ ├── demo_textfield.dart │ │ │ │ ├── ios │ │ │ │ └── demo_superiostextfield.dart │ │ │ │ ├── textfield_inside_single_child_scroll_view_demo.dart │ │ │ │ └── textfield_inside_slivers_demo.dart │ │ ├── flutter_demos │ │ │ └── main_flutter_textfield.dart │ │ ├── l10n │ │ │ ├── app_en.arb │ │ │ ├── app_es.arb │ │ │ ├── app_localizations.dart │ │ │ ├── app_localizations_en.dart │ │ │ └── app_localizations_es.dart │ │ ├── logging.dart │ │ ├── main.dart │ │ ├── main_super_editor.dart │ │ ├── main_super_editor_chat.dart │ │ ├── main_super_reader.dart │ │ ├── main_super_text_field.dart │ │ └── marketing_video │ │ │ └── main_marketing_video.dart │ ├── 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 │ ├── 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 ├── example_chat │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── example_chat │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── main.dart │ │ └── message_page_scaffold_demo │ │ │ ├── demo_chaos_monkey_message_page.dart │ │ │ ├── demo_super_editor_message_page.dart │ │ │ ├── demo_textfield_message_page.dart │ │ │ └── message_page_scaffold_demo.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ └── runner │ │ │ ├── CMakeLists.txt │ │ │ ├── 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 ├── example_perf │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── example_perf │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── 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 │ │ ├── demos │ │ │ ├── long_doc_demo.dart │ │ │ └── rebuild_demo.dart │ │ ├── documents │ │ │ └── frankenstein.dart │ │ └── 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 │ │ ├── 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 │ ├── src │ │ ├── chat │ │ │ ├── message_page_scaffold.dart │ │ │ └── super_message.dart │ │ ├── core │ │ │ ├── document.dart │ │ │ ├── document_composer.dart │ │ │ ├── document_debug_paint.dart │ │ │ ├── document_interaction.dart │ │ │ ├── document_layout.dart │ │ │ ├── document_selection.dart │ │ │ ├── edit_context.dart │ │ │ ├── editor.dart │ │ │ └── styles.dart │ │ ├── default_editor │ │ │ ├── ai │ │ │ │ └── content_fading.dart │ │ │ ├── attributions.dart │ │ │ ├── blockquote.dart │ │ │ ├── blocks │ │ │ │ └── indentation.dart │ │ │ ├── box_component.dart │ │ │ ├── common_editor_operations.dart │ │ │ ├── composer │ │ │ │ └── composer_reactions.dart │ │ │ ├── debug_visualization.dart │ │ │ ├── default_document_editor.dart │ │ │ ├── default_document_editor_reactions.dart │ │ │ ├── document_caret_overlay.dart │ │ │ ├── document_focus_and_selection_policies.dart │ │ │ ├── document_gestures_mouse.dart │ │ │ ├── document_gestures_touch_android.dart │ │ │ ├── document_gestures_touch_ios.dart │ │ │ ├── document_hardware_keyboard │ │ │ │ ├── document_input_keyboard.dart │ │ │ │ ├── document_keyboard_actions.dart │ │ │ │ └── document_physical_keyboard.dart │ │ │ ├── document_ime │ │ │ │ ├── document_delta_editing.dart │ │ │ │ ├── document_ime_communication.dart │ │ │ │ ├── document_ime_interaction_policies.dart │ │ │ │ ├── document_input_ime.dart │ │ │ │ ├── document_serialization.dart │ │ │ │ ├── ime_decoration.dart │ │ │ │ ├── ime_keyboard_control.dart │ │ │ │ ├── mobile_toolbar.dart │ │ │ │ ├── shared_ime.dart │ │ │ │ └── supereditor_ime_interactor.dart │ │ │ ├── document_layers │ │ │ │ └── attributed_text_bounds_overlay.dart │ │ │ ├── document_scrollable.dart │ │ │ ├── horizontal_rule.dart │ │ │ ├── image.dart │ │ │ ├── layout_single_column │ │ │ │ ├── _layout.dart │ │ │ │ ├── _presenter.dart │ │ │ │ ├── _styler_composing_region.dart │ │ │ │ ├── _styler_per_component.dart │ │ │ │ ├── _styler_shylesheet.dart │ │ │ │ ├── _styler_user_selection.dart │ │ │ │ ├── layout_single_column.dart │ │ │ │ ├── selection_aware_viewmodel.dart │ │ │ │ └── super_editor_dry_layout.dart │ │ │ ├── list_items.dart │ │ │ ├── multi_node_editing.dart │ │ │ ├── paragraph.dart │ │ │ ├── selection_binary.dart │ │ │ ├── selection_upstream_downstream.dart │ │ │ ├── spelling_and_grammar │ │ │ │ └── spelling_and_grammar_styler.dart │ │ │ ├── super_editor.dart │ │ │ ├── tables │ │ │ │ ├── table_block.dart │ │ │ │ └── table_markdown.dart │ │ │ ├── tap_handlers │ │ │ │ └── tap_handlers.dart │ │ │ ├── tasks.dart │ │ │ ├── text.dart │ │ │ ├── text │ │ │ │ └── custom_underlines.dart │ │ │ ├── text_ai.dart │ │ │ ├── text_tokenizing │ │ │ │ ├── action_tags.dart │ │ │ │ ├── pattern_tags.dart │ │ │ │ ├── stable_tags.dart │ │ │ │ └── tags.dart │ │ │ ├── text_tools.dart │ │ │ └── unknown_component.dart │ │ ├── document_operations │ │ │ └── selection_operations.dart │ │ ├── infrastructure │ │ │ ├── _logging.dart │ │ │ ├── _scrolling.dart │ │ │ ├── actions.dart │ │ │ ├── attributed_text_styles.dart │ │ │ ├── attribution_layout_bounds.dart │ │ │ ├── blinking_caret.dart │ │ │ ├── composable_text.dart │ │ │ ├── content_layers.dart │ │ │ ├── content_layers_for_boxes.dart │ │ │ ├── content_layers_for_slivers.dart │ │ │ ├── document_gestures.dart │ │ │ ├── document_gestures_interaction_overrides.dart │ │ │ ├── documents │ │ │ │ ├── document_layers.dart │ │ │ │ ├── document_scaffold.dart │ │ │ │ ├── document_scroller.dart │ │ │ │ ├── document_selection.dart │ │ │ │ └── selection_leader_document_layer.dart │ │ │ ├── flutter │ │ │ │ ├── android_toolbar.dart │ │ │ │ ├── build_context.dart │ │ │ │ ├── cupertino_scrollbar.dart │ │ │ │ ├── eager_pan_gesture_recognizer.dart │ │ │ │ ├── empty_box.dart │ │ │ │ ├── flutter_scheduler.dart │ │ │ │ ├── geometry.dart │ │ │ │ ├── material_scrollbar.dart │ │ │ │ ├── monodrag.dart │ │ │ │ ├── overlay_with_groups.dart │ │ │ │ ├── render_box.dart │ │ │ │ ├── scrollbar.dart │ │ │ │ ├── text_input_configuration.dart │ │ │ │ └── text_selection.dart │ │ │ ├── ime_input_owner.dart │ │ │ ├── key_event_extensions.dart │ │ │ ├── keyboard.dart │ │ │ ├── keyboard_panel_scaffold.dart │ │ │ ├── links.dart │ │ │ ├── multi_listenable_builder.dart │ │ │ ├── multi_tap_gesture.dart │ │ │ ├── pausable_value_notifier.dart │ │ │ ├── platforms │ │ │ │ ├── android │ │ │ │ │ ├── android_document_controls.dart │ │ │ │ │ ├── colors.dart │ │ │ │ │ ├── drag_handle_selection.dart │ │ │ │ │ ├── long_press_selection.dart │ │ │ │ │ ├── magnifier.dart │ │ │ │ │ ├── selection_handles.dart │ │ │ │ │ └── toolbar.dart │ │ │ │ ├── ios │ │ │ │ │ ├── colors.dart │ │ │ │ │ ├── floating_cursor.dart │ │ │ │ │ ├── ios_document_controls.dart │ │ │ │ │ ├── ios_system_context_menu.dart │ │ │ │ │ ├── long_press_selection.dart │ │ │ │ │ ├── magnifier.dart │ │ │ │ │ ├── selection_handles.dart │ │ │ │ │ ├── selection_heuristics.dart │ │ │ │ │ └── toolbar.dart │ │ │ │ ├── mac │ │ │ │ │ └── mac_ime.dart │ │ │ │ ├── mobile_documents.dart │ │ │ │ └── platform.dart │ │ │ ├── popovers.dart │ │ │ ├── render_sliver_ext.dart │ │ │ ├── scrolling │ │ │ │ └── desktop_mouse_wheel_and_trackpad_scrolling.dart │ │ │ ├── scrolling_diagnostics │ │ │ │ ├── _scrolling_minimap.dart │ │ │ │ └── scrolling_diagnostics.dart │ │ │ ├── selectable_list.dart │ │ │ ├── serialization │ │ │ │ ├── html │ │ │ │ │ ├── document_to_html.dart │ │ │ │ │ ├── html_blockquotes.dart │ │ │ │ │ ├── html_code.dart │ │ │ │ │ ├── html_headers.dart │ │ │ │ │ ├── html_horizontal_rules.dart │ │ │ │ │ ├── html_images.dart │ │ │ │ │ ├── html_inline_text_styles.dart │ │ │ │ │ ├── html_list_items.dart │ │ │ │ │ ├── html_paragraphs.dart │ │ │ │ │ └── html_table.dart │ │ │ │ ├── markdown │ │ │ │ │ ├── document_to_markdown_serializer.dart │ │ │ │ │ ├── image_syntax.dart │ │ │ │ │ ├── markdown_inline_parser.dart │ │ │ │ │ ├── markdown_inline_upstream_plugin.dart │ │ │ │ │ ├── markdown_to_attributed_text_parsing.dart │ │ │ │ │ ├── markdown_to_document_parsing.dart │ │ │ │ │ ├── super_editor_paste_markdown.dart │ │ │ │ │ ├── super_editor_syntax.dart │ │ │ │ │ └── table.dart │ │ │ │ ├── plain_text │ │ │ │ │ └── document_to_plain_text.dart │ │ │ │ └── quill │ │ │ │ │ ├── content │ │ │ │ │ ├── formatting.dart │ │ │ │ │ └── multimedia.dart │ │ │ │ │ ├── parsing │ │ │ │ │ ├── block_formats.dart │ │ │ │ │ ├── inline_formats.dart │ │ │ │ │ └── parser.dart │ │ │ │ │ ├── serializing │ │ │ │ │ ├── serializers.dart │ │ │ │ │ └── serializing.dart │ │ │ │ │ └── testing │ │ │ │ │ └── quill_delta_comparison.dart │ │ │ ├── signal_notifier.dart │ │ │ ├── sliver_hybrid_stack.dart │ │ │ ├── strings.dart │ │ │ ├── text_input.dart │ │ │ ├── toolbar_position_delegate.dart │ │ │ └── touch_controls.dart │ │ ├── super_reader │ │ │ ├── read_only_document_android_touch_interactor.dart │ │ │ ├── read_only_document_ios_touch_interactor.dart │ │ │ ├── read_only_document_keyboard_interactor.dart │ │ │ ├── read_only_document_mouse_interactor.dart │ │ │ ├── reader_context.dart │ │ │ ├── super_reader.dart │ │ │ └── tasks.dart │ │ ├── super_textfield │ │ │ ├── android │ │ │ │ ├── _caret.dart │ │ │ │ ├── _editing_controls.dart │ │ │ │ ├── _user_interaction.dart │ │ │ │ ├── android_textfield.dart │ │ │ │ └── drag_handle_selection.dart │ │ │ ├── desktop │ │ │ │ └── desktop_textfield.dart │ │ │ ├── infrastructure │ │ │ │ ├── attributed_text_editing_controller.dart │ │ │ │ ├── fill_width_if_constrained.dart │ │ │ │ ├── hint_text.dart │ │ │ │ ├── magnifier.dart │ │ │ │ ├── outer_box_shadow.dart │ │ │ │ ├── text_field_border.dart │ │ │ │ ├── text_field_gestures_interaction_overrides.dart │ │ │ │ ├── text_field_scroller.dart │ │ │ │ ├── text_field_tap_handlers.dart │ │ │ │ └── text_scrollview.dart │ │ │ ├── input_method_engine │ │ │ │ └── _ime_text_editing_controller.dart │ │ │ ├── ios │ │ │ │ ├── caret.dart │ │ │ │ ├── editing_controls.dart │ │ │ │ ├── floating_cursor.dart │ │ │ │ ├── ios_textfield.dart │ │ │ │ └── user_interaction.dart │ │ │ ├── metrics.dart │ │ │ ├── styles.dart │ │ │ ├── super_text_field_keys.dart │ │ │ ├── super_textfield.dart │ │ │ └── super_textfield_context.dart │ │ ├── test │ │ │ ├── flutter_extensions │ │ │ │ └── finders.dart │ │ │ ├── ime.dart │ │ │ ├── super_editor_test │ │ │ │ ├── supereditor_inspector.dart │ │ │ │ ├── supereditor_robot.dart │ │ │ │ └── tasks_test_tools.dart │ │ │ ├── super_reader_test │ │ │ │ ├── super_reader_inspector.dart │ │ │ │ └── super_reader_robot.dart │ │ │ └── test_globals.dart │ │ └── undo_redo.dart │ ├── super_editor.dart │ ├── super_editor_test.dart │ ├── super_reader_test.dart │ └── super_text_field.dart ├── pubspec.yaml ├── test │ ├── chat │ │ └── message_page_scaffold_test.dart │ ├── flutter_test_config.dart │ ├── infrastructure │ │ ├── content_layers_test.dart │ │ ├── inline_span_test.dart │ │ ├── keyboard_blacklist_test.dart │ │ ├── keyboard_panel_scaffold_test.dart │ │ ├── multi_tap_gesture_test.dart │ │ ├── selectable_list_test.dart │ │ ├── serialization │ │ │ ├── html │ │ │ │ └── document_to_html_test.dart │ │ │ ├── markdown │ │ │ │ ├── attributed_text_markdown_test.dart │ │ │ │ ├── custom_block_parser_test.dart │ │ │ │ ├── custom_block_serializer_test.dart │ │ │ │ ├── custom_parsers │ │ │ │ │ ├── callout_block.dart │ │ │ │ │ └── upsell_block.dart │ │ │ │ ├── markdown_inline_upstream_plugin_test.dart │ │ │ │ ├── super_editor_markdown_pasting_test.dart │ │ │ │ ├── super_editor_markdown_test.dart │ │ │ │ ├── table_parser_test.dart │ │ │ │ └── test_tools.dart │ │ │ └── quill │ │ │ │ ├── attributed_text.dart │ │ │ │ ├── parsing │ │ │ │ ├── multiline_parsing_test.dart │ │ │ │ └── parsing_test.dart │ │ │ │ ├── serializing_test.dart │ │ │ │ └── test_documents.dart │ │ └── strings_test.dart │ ├── super_editor │ │ ├── bug_fix_test.dart │ │ ├── components │ │ │ ├── block_node_test.dart │ │ │ ├── blockquote_test.dart │ │ │ ├── hint_text_test.dart │ │ │ ├── horizontal_rule_test.dart │ │ │ ├── list_items_test.dart │ │ │ ├── markdown_table_test.dart │ │ │ ├── paragraph_test.dart │ │ │ └── task_test.dart │ │ ├── custom_tap_handlers │ │ │ └── add_paragraph_at_end_tap_handler_test.dart │ │ ├── desktop │ │ │ └── super_editor_desktop_selection_test.dart │ │ ├── infrastructure │ │ │ ├── attributed_text_styles_test.dart │ │ │ ├── common_editor_operations_test.dart │ │ │ ├── document_attributions_test.dart │ │ │ ├── document_editor_test.dart │ │ │ ├── document_selection_test.dart │ │ │ ├── document_test.dart │ │ │ ├── editor_test.dart │ │ │ └── mutable_document_test.dart │ │ ├── mobile │ │ │ ├── mobile_long_press_selection_text_layout.png │ │ │ ├── super_editor_android_overlay_controls_test.dart │ │ │ ├── super_editor_android_selection_test.dart │ │ │ ├── super_editor_ios_overlay_controls_test.dart │ │ │ ├── super_editor_ios_selection_test.dart │ │ │ └── super_editor_ios_swipe_to_pop_test.dart │ │ ├── super_editor_ime_ownership_test.dart │ │ ├── super_editor_shrinkwrap_test.dart │ │ ├── super_editor_undo_redo_test.dart │ │ ├── supereditor_attributions_test.dart │ │ ├── supereditor_caret_test.dart │ │ ├── supereditor_component_selection_test.dart │ │ ├── supereditor_components_test.dart │ │ ├── supereditor_content_deletion_test.dart │ │ ├── supereditor_content_insertion_test.dart │ │ ├── supereditor_copy_and_paste_test.dart │ │ ├── supereditor_floating_cursor_test.dart │ │ ├── supereditor_focus_test.dart │ │ ├── supereditor_gestures_test.dart │ │ ├── supereditor_initialization_test.dart │ │ ├── supereditor_inline_widgets_test.dart │ │ ├── supereditor_input_ime_test.dart │ │ ├── supereditor_input_keyboard_actions_test.dart │ │ ├── supereditor_keyboard_test.dart │ │ ├── supereditor_multi_editor_test.dart │ │ ├── supereditor_plugin_test.dart │ │ ├── supereditor_popover_focus_test.dart │ │ ├── supereditor_robot_test.dart │ │ ├── supereditor_route_test.dart │ │ ├── supereditor_scrolling_test.dart │ │ ├── supereditor_selection_test.dart │ │ ├── supereditor_shortcuts_test.dart │ │ ├── supereditor_single_column_layout_test.dart │ │ ├── supereditor_smoke_test.dart │ │ ├── supereditor_software_keyboard_toolbar_test.dart │ │ ├── supereditor_style_test.dart │ │ ├── supereditor_switching_test.dart │ │ ├── supereditor_tapregion_test.dart │ │ ├── supereditor_test_tools.dart │ │ ├── supereditor_test_tools_test.dart │ │ ├── supereditor_text_layout_test.dart │ │ ├── supereditor_theme_switching_test.dart │ │ ├── supereditor_undeletable_content_test.dart │ │ ├── test_documents.dart │ │ └── text_entry │ │ │ ├── attributions_test.dart │ │ │ ├── dash_conversion_test.dart │ │ │ ├── inline_widgets_test.dart │ │ │ ├── links_test.dart │ │ │ ├── paragraph_conversions_test.dart │ │ │ ├── super_editor_common_text_entry_test.dart │ │ │ ├── super_editor_content_conversion_test.dart │ │ │ ├── tagging │ │ │ ├── action_tags_test.dart │ │ │ ├── pattern_tags_test.dart │ │ │ └── stable_tags_test.dart │ │ │ ├── text_test.dart │ │ │ └── text_tools_test.dart │ ├── super_reader │ │ ├── components │ │ │ ├── markdown_tables_test.dart │ │ │ └── task_test.dart │ │ ├── mobile │ │ │ ├── super_reader_android_selection_test.dart │ │ │ ├── super_reader_ios_overlay_controls_test.dart │ │ │ └── super_reader_ios_selection_test.dart │ │ ├── reader_test_tools.dart │ │ ├── reader_test_tools_test.dart │ │ ├── super_reader_gestures_test.dart │ │ ├── super_reader_keyboard_test.dart │ │ ├── super_reader_phone_rotation_test.dart │ │ ├── super_reader_route_test.dart │ │ ├── super_reader_scrolling_test.dart │ │ ├── super_reader_selection_test.dart │ │ ├── super_reader_stylesheet_test.dart │ │ ├── super_reader_tapregion_test.dart │ │ ├── superreader_attributions_test.dart │ │ └── test_documents.dart │ ├── super_textfield │ │ ├── android │ │ │ ├── super_textfield_android_scrolling_test.dart │ │ │ └── super_textfield_android_selection_test.dart │ │ ├── attributed_text_editing_controller_test.dart │ │ ├── ime_attributed_text_editing_controller_test.dart │ │ ├── ios │ │ │ ├── super_textfield_ios_scrolling_test.dart │ │ │ └── super_textfield_ios_selection_test.dart │ │ ├── mac │ │ │ └── super_textfield_mac_selectors_test.dart │ │ ├── super_desktop_texfield_mouse_interaction_test.dart │ │ ├── super_desktop_textfield_keyboard_test.dart │ │ ├── super_textfield_ancestor_shortcuts_test.dart │ │ ├── super_textfield_attributions_test.dart │ │ ├── super_textfield_auto_scroll_test.dart │ │ ├── super_textfield_caret_test.dart │ │ ├── super_textfield_emoji_test.dart │ │ ├── super_textfield_estimated_line_height_test.dart │ │ ├── super_textfield_gesture_scrolling_test.dart │ │ ├── super_textfield_gestures_interaction_overrides_test.dart │ │ ├── super_textfield_gestures_test.dart │ │ ├── super_textfield_ime_test.dart │ │ ├── super_textfield_inline_widgets_test.dart │ │ ├── super_textfield_input_actions_test.dart │ │ ├── super_textfield_inspector.dart │ │ ├── super_textfield_keyboard_shortcuts_scrolling_test.dart │ │ ├── super_textfield_rendering_test.dart │ │ ├── super_textfield_robot.dart │ │ ├── super_textfield_scrolling_test.dart │ │ ├── super_textfield_test.dart │ │ ├── super_textfield_text_alignment_test.dart │ │ ├── super_textfield_theme_test.dart │ │ ├── toolbar_position_delegate_test.dart │ │ └── type_into_super_textfield_test.dart │ ├── test_flutter_extensions.dart │ ├── test_runners.dart │ ├── test_tools.dart │ └── test_tools_user_input.dart └── test_goldens │ ├── editor │ ├── components │ │ ├── _components_test_utils.dart │ │ ├── goldens │ │ │ ├── paragraph_alignments.png │ │ │ ├── super_editor_list_item_ordered_aligns_dot_with_text_with_font_sizes.png │ │ │ ├── super_editor_list_item_ordered_aligns_dot_with_text_with_font_sizes_and_line_multiplier.png │ │ │ ├── super_editor_list_item_ordered_lower_alpha_numeral_component_builder.png │ │ │ ├── super_editor_list_item_ordered_lower_alpha_numeral_stylesheet.png │ │ │ ├── super_editor_list_item_ordered_lower_roman_numeral_component_builder.png │ │ │ ├── super_editor_list_item_ordered_lower_roman_numeral_stylesheet.png │ │ │ ├── super_editor_list_item_ordered_upper_alpha_numeral_component_builder.png │ │ │ ├── super_editor_list_item_ordered_upper_alpha_numeral_stylesheet.png │ │ │ ├── super_editor_list_item_ordered_upper_roman_numeral_component_builder.png │ │ │ ├── super_editor_list_item_ordered_upper_roman_numeral_stylesheet.png │ │ │ ├── super_editor_list_item_unordered_aligns_dot_with_text_with_font_sizes.png │ │ │ ├── super_editor_list_item_unordered_aligns_dot_with_text_with_font_sizes_and_line_multiplier.png │ │ │ ├── super_editor_list_item_unordered_custom_dot_color_component_builder.png │ │ │ ├── super_editor_list_item_unordered_custom_dot_color_stylesheet.png │ │ │ ├── super_editor_list_item_unordered_custom_dot_shape_component_builder.png │ │ │ ├── super_editor_list_item_unordered_custom_dot_shape_stylesheet.png │ │ │ ├── super_editor_list_item_unordered_custom_dot_size_component_builder.png │ │ │ ├── super_editor_list_item_unordered_custom_dot_size_stylesheet.png │ │ │ ├── super_editor_markdown_table_customization_border.png │ │ │ ├── super_editor_markdown_table_customization_cell_decoration.png │ │ │ ├── super_editor_markdown_table_customization_cell_padding.png │ │ │ ├── super_editor_markdown_table_customization_header_decoration.png │ │ │ ├── super_editor_markdown_table_customization_header_text_style.png │ │ │ ├── super_editor_markdown_table_customization_row_decoration.png │ │ │ ├── super_editor_markdown_table_customization_text_style.png │ │ │ ├── super_editor_markdown_table_different_alignments.png │ │ │ ├── super_editor_markdown_table_fills_width.png │ │ │ ├── super_editor_markdown_table_inline_styles.png │ │ │ ├── super_editor_markdown_table_missing_columns.png │ │ │ ├── super_editor_markdown_table_shrinks_to_fit_width.png │ │ │ ├── super_editor_markdown_table_single_header_cell.png │ │ │ ├── super_editor_markdown_table_without_data_rows.png │ │ │ └── text_with_hint.png │ │ ├── list_items_test.dart │ │ ├── markdown_table_test.dart │ │ ├── paragraph_test.dart │ │ └── text_with_hint_test.dart │ ├── goldens │ │ ├── super-editor-android-custom-caret-width.png │ │ ├── super-editor-caret-rotation-landscape-portrait-after-android.png │ │ ├── super-editor-caret-rotation-landscape-portrait-after-ios.png │ │ ├── super-editor-caret-rotation-landscape-portrait-before-android.png │ │ ├── super-editor-caret-rotation-landscape-portrait-before-ios.png │ │ ├── super-editor-caret-rotation-portrait-landscape-after-android.png │ │ ├── super-editor-caret-rotation-portrait-landscape-after-ios.png │ │ ├── super-editor-caret-rotation-portrait-landscape-before-android.png │ │ ├── super-editor-caret-rotation-portrait-landscape-before-ios.png │ │ ├── super-editor-image-caret-downstream-android.png │ │ ├── super-editor-image-caret-downstream-ios.png │ │ ├── super-editor-image-caret-downstream-mac.png │ │ ├── super-editor-image-caret-upstream-android.png │ │ ├── super-editor-image-caret-upstream-ios.png │ │ ├── super-editor-image-caret-upstream-mac.png │ │ ├── super-editor-ios-custom-caret-width.png │ │ ├── super-editor-ios-custom-handle-ball-diameter.png │ │ ├── super-editor-ios-custom-handle-width.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-ordered-list-item-android.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-ordered-list-item-iOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-ordered-list-item-linux.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-ordered-list-item-macOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-ordered-list-item-windows.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-paragraph-android.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-paragraph-iOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-paragraph-linux.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-paragraph-macOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-paragraph-windows.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-task-android.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-task-iOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-task-linux.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-task-macOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-task-windows.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-unordered-list-item-android.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-unordered-list-item-iOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-unordered-list-item-linux.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-unordered-list-item-macOS.png │ │ ├── super-editor-rtl-caret-at-leftmost-character-unordered-list-item-windows.png │ │ ├── super-editor_selection-color_custom.png │ │ ├── super-editor_selection-color_default.png │ │ ├── text-scaling-blockquote.png │ │ ├── text-scaling-header.png │ │ ├── text-scaling-ordered-list.png │ │ ├── text-scaling-paragraph-collapsed-selection.png │ │ ├── text-scaling-paragraph-expanded-selection.png │ │ ├── text-scaling-paragraph.png │ │ └── text-scaling-unordered-list.png │ ├── mobile │ │ ├── goldens │ │ │ ├── mobile-selection_android_double-tap-text.png │ │ │ ├── mobile-selection_android_drag-base-upstream.png │ │ │ ├── mobile-selection_android_drag-collapsed-downstream.png │ │ │ ├── mobile-selection_android_drag-collapsed-upstream.png │ │ │ ├── mobile-selection_android_drag-extent-downstream.png │ │ │ ├── mobile-selection_android_drag-extent-upstream.png │ │ │ ├── mobile-selection_android_single-tap-text.png │ │ │ ├── mobile-selection_android_trip-tap-text.png │ │ │ ├── mobile-selection_ios_double-tap-text.png │ │ │ ├── mobile-selection_ios_drag-base-upstream.png │ │ │ ├── mobile-selection_ios_drag-collapsed-downstream.png │ │ │ ├── mobile-selection_ios_drag-collapsed-upstream.png │ │ │ ├── mobile-selection_ios_drag-extent-downstream.png │ │ │ ├── mobile-selection_ios_drag-extent-upstream.png │ │ │ ├── mobile-selection_ios_single-tap-text.png │ │ │ ├── mobile-selection_ios_trip-tap-text.png │ │ │ ├── supereditor_android_collapsed_handle_color.png │ │ │ ├── supereditor_android_expanded_handle_color.png │ │ │ ├── supereditor_android_magnifier_screen_edges.png │ │ │ ├── supereditor_ios_collapsed_handle_color.png │ │ │ ├── supereditor_ios_expanded_handle_color.png │ │ │ └── supereditor_ios_magnifier_screen_edges.png │ │ ├── mobile_selection_test.dart │ │ ├── supereditor_android_overlay_controls_test.dart │ │ └── supereditor_ios_overlay_controls_test.dart │ ├── supereditor_caret_test.dart │ ├── supereditor_rtl_test.dart │ ├── supereditor_selection_test.dart │ ├── supereditor_text_layout_test.dart │ └── text_entry │ │ ├── goldens │ │ ├── super-editor_text-entry_composing-region-showing-nothing_blockquote_linux.png │ │ ├── super-editor_text-entry_composing-region-showing-nothing_blockquote_windows.png │ │ ├── super-editor_text-entry_composing-region-showing-nothing_paragraph_linux.png │ │ ├── super-editor_text-entry_composing-region-showing-nothing_paragraph_windows.png │ │ ├── super-editor_text-entry_composing-region-shows-nothing_list-item_linux.png │ │ ├── super-editor_text-entry_composing-region-shows-nothing_list-item_windows.png │ │ ├── super-editor_text-entry_composing-region-shows-nothing_task_linux.png │ │ ├── super-editor_text-entry_composing-region-shows-nothing_task_windows.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_blockquote_android_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_blockquote_android_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_blockquote_iOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_blockquote_iOS_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_blockquote_macOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_blockquote_macOS_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_list-item_android_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_list-item_android_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_list-item_iOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_list-item_iOS_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_list-item_macOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_list-item_macOS_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_paragraph_android_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_paragraph_android_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_paragraph_iOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_paragraph_iOS_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_paragraph_macOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_paragraph_macOS_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_task_android_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_task_android_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_task_iOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_task_iOS_2.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_task_macOS_1.png │ │ ├── super-editor_text-entry_composing-region-shows-underline_task_macOS_2.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_blockquote_android_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_blockquote_android_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_blockquote_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_blockquote_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_blockquote_macOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_blockquote_macOS_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_list-item_android_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_list-item_android_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_list-item_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_list-item_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_list-item_macOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_list-item_macOS_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_paragraph_android_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_paragraph_android_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_paragraph_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_paragraph_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_paragraph_macOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_paragraph_macOS_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_task_android_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_task_android_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_task_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_task_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_task_macOS_no-stylesheet.png │ │ ├── super-editor_text-entry_grammar-error-shows-underline_task_macOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_blockquote_android_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_blockquote_android_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_blockquote_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_blockquote_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_blockquote_macOS_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_blockquote_macOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_list-item_android_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_list-item_android_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_list-item_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_list-item_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_list-item_macOS_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_list-item_macOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_paragraph_android_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_paragraph_android_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_paragraph_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_paragraph_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_paragraph_macOS_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_paragraph_macOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_task_android_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_task_android_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_task_iOS_no-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_task_iOS_with-stylesheet.png │ │ ├── super-editor_text-entry_spelling-error-shows-underline_task_macOS_no-stylesheet.png │ │ └── super-editor_text-entry_spelling-error-shows-underline_task_macOS_with-stylesheet.png │ │ ├── super_editor_composing_region_underline_test.dart │ │ └── super_editor_spelling_error_underline_test.dart │ ├── flutter_test_config.dart │ ├── super_reader │ ├── goldens │ │ ├── super-reader_selection-color_custom.png │ │ └── super-reader_selection-color_default.png │ └── super_reader_selection_test.dart │ ├── super_textfield │ ├── goldens │ │ ├── super-text-field_composing-region-shows-underline_android_1.png │ │ ├── super-text-field_composing-region-shows-underline_android_2.png │ │ ├── super-text-field_composing-region-shows-underline_iOS_1.png │ │ ├── super-text-field_composing-region-shows-underline_iOS_2.png │ │ ├── super-text-field_composing-region-shows-underline_macOS_1.png │ │ ├── super-text-field_composing-region-shows-underline_macOS_2.png │ │ ├── super-text-field_composing-region-underline-shows-nothing_linux.png │ │ ├── super-text-field_composing-region-underline-shows-nothing_windows.png │ │ ├── super-text-field_inline_widgets_multi_line_caret_downstream.png │ │ ├── super-text-field_inline_widgets_multi_line_caret_upstream.png │ │ ├── super-text-field_inline_widgets_multi_line_selection_box_downstream.png │ │ ├── super-text-field_inline_widgets_multi_line_selection_box_over.png │ │ ├── super-text-field_inline_widgets_multi_line_selection_box_single.png │ │ ├── super-text-field_inline_widgets_multi_line_selection_box_upstream.png │ │ ├── super-text-field_inline_widgets_single_line_caret_downstream.png │ │ ├── super-text-field_inline_widgets_single_line_caret_upstream.png │ │ ├── super-text-field_inline_widgets_single_line_selection_box_downstream.png │ │ ├── super-text-field_inline_widgets_single_line_selection_box_over.png │ │ ├── super-text-field_inline_widgets_single_line_selection_box_single.png │ │ ├── super-text-field_inline_widgets_single_line_selection_box_upstream.png │ │ ├── super-text-field_rtl-caret-at-leftmost-character-android.png │ │ ├── super-text-field_rtl-caret-at-leftmost-character-iOS.png │ │ ├── super-text-field_rtl-caret-at-leftmost-character-linux.png │ │ ├── super-text-field_rtl-caret-at-leftmost-character-macOS.png │ │ ├── super-text-field_rtl-caret-at-leftmost-character-windows.png │ │ ├── super_textfield_alignments_multiline_android.png │ │ ├── super_textfield_alignments_multiline_desktop.png │ │ ├── super_textfield_alignments_multiline_ios.png │ │ ├── super_textfield_alignments_singleline_android.png │ │ ├── super_textfield_alignments_singleline_desktop.png │ │ ├── super_textfield_alignments_singleline_ios.png │ │ ├── super_textfield_android_magnifier_screen_edges.png │ │ ├── super_textfield_empty_hint_padding.png │ │ ├── super_textfield_font_height.png │ │ ├── super_textfield_ios_magnifier_screen_edges.png │ │ ├── super_textfield_ios_toolbar_pointing_down_collapsed.png │ │ ├── super_textfield_ios_toolbar_pointing_down_expanded.png │ │ ├── super_textfield_ios_toolbar_pointing_up_collapsed.png │ │ ├── super_textfield_ios_toolbar_pointing_up_expanded.png │ │ ├── super_textfield_scrolled_down.png │ │ └── super_textfield_scrolled_up.png │ ├── super_textfield_android_overlay_controls_test.dart │ ├── super_textfield_composing_region_underline_test.dart │ ├── super_textfield_empty_test.dart │ ├── super_textfield_font_height_test.dart │ ├── super_textfield_inline_widgets_test.dart │ ├── super_textfield_ios_overlay_controls_test.dart │ ├── super_textfield_rtl_test.dart │ ├── super_textfield_scroll_test.dart │ ├── super_textfield_text_alignment_test.dart │ └── super_textfield_toolbar_test.dart │ └── test_tools_goldens.dart ├── super_editor_clipboard ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ ├── src │ │ ├── document_copy.dart │ │ ├── super_editor_copy.dart │ │ └── super_reader_copy.dart │ └── super_editor_clipboard.dart └── pubspec.yaml ├── super_editor_markdown ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ ├── src │ │ ├── document_to_markdown_serializer.dart │ │ ├── image_syntax.dart │ │ ├── markdown_inline_parser.dart │ │ ├── markdown_inline_upstream_plugin.dart │ │ ├── markdown_to_attributed_text_parsing.dart │ │ ├── markdown_to_document_parsing.dart │ │ ├── super_editor_paste_markdown.dart │ │ ├── super_editor_syntax.dart │ │ └── table.dart │ └── super_editor_markdown.dart ├── pubspec.yaml └── test │ ├── attributed_text_markdown_test.dart │ ├── custom_block_parser_test.dart │ ├── custom_block_serializer_test.dart │ ├── custom_parsers │ ├── callout_block.dart │ └── upsell_block.dart │ ├── flutter_test_config.dart │ ├── markdown_inline_upstream_plugin_test.dart │ ├── super_editor_markdown_pasting_test.dart │ ├── super_editor_markdown_test.dart │ ├── table_parser_test.dart │ └── test_tools.dart ├── super_editor_quill ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── doc │ └── pub │ │ └── screenshots │ │ └── quill-clone.png ├── lib │ ├── src │ │ ├── content │ │ │ ├── formatting.dart │ │ │ └── multimedia.dart │ │ ├── parsing │ │ │ ├── block_formats.dart │ │ │ ├── inline_formats.dart │ │ │ └── parser.dart │ │ ├── serializing │ │ │ ├── serializers.dart │ │ │ └── serializing.dart │ │ └── testing │ │ │ └── quill_delta_comparison.dart │ ├── super_editor_quill.dart │ └── super_editor_quill_test.dart ├── pubspec.yaml └── test │ ├── attributed_text.dart │ ├── parsing │ ├── multiline_parsing_test.dart │ └── parsing_test.dart │ ├── serializing_test.dart │ └── test_documents.dart ├── super_editor_spellcheck ├── .gitignore ├── .metadata ├── .run │ ├── Mac Plugin Sample.run.xml │ ├── Super Editor Integration.run.xml │ └── main.dart.run.xml ├── 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 │ │ │ │ │ │ └── super_editor_spellcheck_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── main_plugin_sample.dart │ │ └── main_super_editor_spellcheck.dart │ ├── 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 ├── lib │ ├── src │ │ ├── platform │ │ │ ├── messages.g.dart │ │ │ ├── spell_checker.dart │ │ │ └── spell_checker_mac.dart │ │ └── super_editor │ │ │ ├── spell_checker_popover_controller.dart │ │ │ ├── spellcheck_clock.dart │ │ │ ├── spelling_and_grammar_plugin.dart │ │ │ ├── spelling_error_suggestion_overlay.dart │ │ │ └── spelling_error_suggestions.dart │ └── super_editor_spellcheck.dart ├── macos │ ├── Classes │ │ ├── SuperEditorSpellcheckPlugin.swift │ │ └── messages.g.swift │ └── super_editor_spellcheck.podspec ├── pigeon │ └── messages.dart ├── pubspec.yaml ├── test │ ├── spellcheck_ignore_rules_test.dart │ ├── spellcheck_timing_test.dart │ └── spelling_and_grammar_plugin_registration_test.dart └── test_goldens │ ├── spellcheck_timing_test.dart │ ├── spelling-error-underline-reset_no-delay.png │ ├── spelling-error-underline-reset_with-delay.png │ ├── spelling-error-underlines-after-upstream-replacement_no-delay.png │ ├── spelling-error-underlines-after-upstream-replacement_with-delay.png │ ├── spelling-error-underlines-after-upstream-typing_no-delay.png │ └── spelling-error-underlines-after-upstream-typing_with-delay.png ├── super_keyboard ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── flutterbountyhunters │ │ └── superkeyboard │ │ └── super_keyboard │ │ ├── SuperKeyboardLog.kt │ │ └── SuperKeyboardPlugin.kt ├── doc │ └── website │ │ ├── .gitignore │ │ ├── analysis_options.yaml │ │ ├── bin │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── source │ │ ├── _data.yaml │ │ ├── _includes │ │ ├── components │ │ │ ├── codeSampleBuilder.md │ │ │ ├── codeSampleDirectListening.md │ │ │ ├── highlightJs.jinja │ │ │ └── navMain.jinja │ │ └── layouts │ │ │ └── docs_page.jinja │ │ ├── guides │ │ ├── _data.yaml │ │ ├── android.md │ │ ├── ios.md │ │ ├── testing.md │ │ └── unified-api.md │ │ ├── images │ │ ├── branding │ │ │ └── logo.png │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ └── ios │ │ │ ├── ipad-keyboards.png │ │ │ └── iphone-keyboards.png │ │ ├── index.md │ │ └── styles │ │ ├── docs_page_layout.scss │ │ ├── docs_page_layout_dark.scss │ │ └── docs_page_layout_light.scss ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── flutterbountyhunters │ │ │ │ │ │ └── superkeyboard │ │ │ │ │ │ └── super_keyboard_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── golden_tester.Dockerfile ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ └── SuperKeyboardPlugin.swift │ ├── Resources │ │ └── PrivacyInfo.xcprivacy │ └── super_keyboard.podspec ├── lib │ ├── src │ │ ├── keyboard.dart │ │ ├── logging.dart │ │ ├── super_keyboard_android.dart │ │ ├── super_keyboard_ios.dart │ │ └── super_keyboard_unified.dart │ ├── super_keyboard.dart │ ├── super_keyboard_test.dart │ └── test │ │ └── keyboard_simulator.dart ├── pubspec.yaml ├── test │ └── keyboard_simulation_test.dart └── test_goldens │ ├── goldens │ └── keyboard-tools_keyboard-widget_opens-and-closes.png │ └── software_keyboard_tools_test.dart ├── super_text_layout ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_TESTS.md ├── analysis_options.yaml ├── doc │ └── pub │ │ └── screenshots │ │ ├── follow-the-caret.png │ │ ├── multiple-user-selections.png │ │ ├── selection-and-caret.png │ │ └── text-highlights.png ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── main.dart │ │ ├── rainbow_builder.dart │ │ ├── rainbow_character_supertext.dart │ │ ├── typing_robot.dart │ │ └── user_label_layer.dart │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── 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 ├── lib │ ├── src │ │ ├── caret_layer.dart │ │ ├── infrastructure │ │ │ ├── blink_controller.dart │ │ │ ├── fill_width_if_constrained.dart │ │ │ └── signal_listenable.dart │ │ ├── inline_widgets.dart │ │ ├── super_text.dart │ │ ├── super_text_inspector.dart │ │ ├── super_text_layout_with_selection.dart │ │ ├── text_layout.dart │ │ ├── text_selection_layer.dart │ │ └── text_underline_layer.dart │ ├── super_text_layout.dart │ ├── super_text_layout_inspector.dart │ └── super_text_layout_logging.dart ├── pubspec.yaml ├── test │ ├── blink_controller_test.dart │ ├── caret_layer_test.dart │ ├── flutter_test_config.dart │ ├── super_text_test.dart │ ├── super_text_with_selection_test.dart │ └── test_tools.dart └── test_goldens │ ├── caret_layer_test.dart │ ├── flutter_test_config.dart │ ├── goldens │ ├── CaretLayer_multi-caret.png │ ├── CaretLayer_single-caret_decorated.png │ ├── CaretLayer_single-caret_normal.png │ ├── CaretLayer_two-carets-same-position.png │ ├── SuperText-inline-widgets-alignment.png │ ├── SuperText-inline-widgets-sizing.png │ ├── SuperText-reference-render.png │ ├── SuperText-text-scale-factor.png │ ├── SuperText_layers_caret.png │ ├── SuperText_layers_character-box-outlines.png │ ├── SuperText_layers_character-boxes.png │ ├── SuperText_layers_line-boxes.png │ ├── TextSelectionLayer_full-selection-border-radius.png │ ├── TextSelectionLayer_full-selection.png │ ├── TextSelectionLayer_no-selection-when-empty-border-radius.png │ ├── TextSelectionLayer_no-selection-when-empty.png │ ├── TextSelectionLayer_partial-selection-border-radius.png │ ├── TextSelectionLayer_partial-selection.png │ ├── TextSelectionLayer_small-highlight-when-empty-border-radius.png │ ├── TextSelectionLayer_small-highlight-when-empty.png │ └── TextUnderlineLayer_paints-underline.png │ ├── inline_widgets_test.dart │ ├── super_text_layers_test.dart │ ├── super_text_test.dart │ ├── test_tools.dart │ ├── test_tools_goldens.dart │ ├── text_selection_layer_test.dart │ └── text_underline_layer_test.dart └── website ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── assets ├── fonts │ ├── Aeonik-Bold.woff │ ├── Aeonik-Light.woff │ ├── Aeonik-Regular.woff │ └── Aeonik-Thin.woff └── images │ ├── background.png │ ├── dart_logo.png │ ├── ic_customize.png │ ├── ic_ready_to_go.png │ ├── logo.gif │ └── logo_light_bg.gif ├── build.sh ├── lib ├── breakpoints.dart ├── homepage │ ├── call_to_action.dart │ ├── editor_toolbar.dart │ ├── editor_video_showcase.dart │ ├── featured_editor.dart │ ├── features.dart │ ├── footer.dart │ ├── header.dart │ ├── home_page.dart │ └── inside_the_toolbox.dart ├── infrastructure │ └── super_editor_item_selector.dart ├── main.dart └── shims │ ├── dart_ui.dart │ ├── dart_ui_fake.dart │ └── dart_ui_real.dart ├── pubspec.lock ├── pubspec.yaml └── web ├── favicon.png └── index.html /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build_and_release_docs_website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.github/workflows/build_and_release_docs_website.yaml -------------------------------------------------------------------------------- /.github/workflows/build_clones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.github/workflows/build_clones.yaml -------------------------------------------------------------------------------- /.github/workflows/cherry_pick_to_stable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.github/workflows/cherry_pick_to_stable.yaml -------------------------------------------------------------------------------- /.github/workflows/pr_validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.github/workflows/pr_validation.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/README.md -------------------------------------------------------------------------------- /README_FUNDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/README_FUNDING.md -------------------------------------------------------------------------------- /attributed_text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/.gitignore -------------------------------------------------------------------------------- /attributed_text/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/CHANGELOG.md -------------------------------------------------------------------------------- /attributed_text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/LICENSE -------------------------------------------------------------------------------- /attributed_text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/README.md -------------------------------------------------------------------------------- /attributed_text/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/analysis_options.yaml -------------------------------------------------------------------------------- /attributed_text/lib/attributed_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/attributed_text.dart -------------------------------------------------------------------------------- /attributed_text/lib/src/attributed_spans.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/src/attributed_spans.dart -------------------------------------------------------------------------------- /attributed_text/lib/src/attributed_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/src/attributed_text.dart -------------------------------------------------------------------------------- /attributed_text/lib/src/attribution.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/src/attribution.dart -------------------------------------------------------------------------------- /attributed_text/lib/src/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/src/logging.dart -------------------------------------------------------------------------------- /attributed_text/lib/src/span_range.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/src/span_range.dart -------------------------------------------------------------------------------- /attributed_text/lib/src/test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/src/test_tools.dart -------------------------------------------------------------------------------- /attributed_text/lib/src/text_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/lib/src/text_tools.dart -------------------------------------------------------------------------------- /attributed_text/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/pubspec.yaml -------------------------------------------------------------------------------- /attributed_text/test/attributed_spans_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/test/attributed_spans_test.dart -------------------------------------------------------------------------------- /attributed_text/test/attributed_text_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/test/attributed_text_test.dart -------------------------------------------------------------------------------- /attributed_text/test/test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/attributed_text/test/test_tools.dart -------------------------------------------------------------------------------- /doc/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/.gitignore -------------------------------------------------------------------------------- /doc/website/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/analysis_options.yaml -------------------------------------------------------------------------------- /doc/website/bin/super_editor_docs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/bin/super_editor_docs.dart -------------------------------------------------------------------------------- /doc/website/design-assets/funders/bringing-fire_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/design-assets/funders/bringing-fire_logo.jpg -------------------------------------------------------------------------------- /doc/website/design-assets/funders/clearful_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/design-assets/funders/clearful_logo.png -------------------------------------------------------------------------------- /doc/website/design-assets/funders/reflection_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/design-assets/funders/reflection_logo.png -------------------------------------------------------------------------------- /doc/website/design-assets/funders/superlist_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/design-assets/funders/superlist_logo.png -------------------------------------------------------------------------------- /doc/website/design-assets/funders/turtle_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/design-assets/funders/turtle_logo.png -------------------------------------------------------------------------------- /doc/website/design-assets/homepage.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/design-assets/homepage.psd -------------------------------------------------------------------------------- /doc/website/design-assets/logos.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/design-assets/logos.psd -------------------------------------------------------------------------------- /doc/website/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/pubspec.lock -------------------------------------------------------------------------------- /doc/website/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/pubspec.yaml -------------------------------------------------------------------------------- /doc/website/source/_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_data.yaml -------------------------------------------------------------------------------- /doc/website/source/_includes/components/codeSample.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_includes/components/codeSample.jinja -------------------------------------------------------------------------------- /doc/website/source/_includes/components/favicon.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_includes/components/favicon.jinja -------------------------------------------------------------------------------- /doc/website/source/_includes/components/footer.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_includes/components/footer.jinja -------------------------------------------------------------------------------- /doc/website/source/_includes/components/funders.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_includes/components/funders.jinja -------------------------------------------------------------------------------- /doc/website/source/_includes/components/navMain.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_includes/components/navMain.jinja -------------------------------------------------------------------------------- /doc/website/source/_includes/components/navbar.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_includes/components/navbar.jinja -------------------------------------------------------------------------------- /doc/website/source/_includes/layouts/docs_page.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/_includes/layouts/docs_page.jinja -------------------------------------------------------------------------------- /doc/website/source/contributing/_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/contributing/_data.yaml -------------------------------------------------------------------------------- /doc/website/source/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/contributing/index.md -------------------------------------------------------------------------------- /doc/website/source/contributing/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/contributing/quickstart.md -------------------------------------------------------------------------------- /doc/website/source/dev/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/dev/style-guide.md -------------------------------------------------------------------------------- /doc/website/source/images/branding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/branding/logo.png -------------------------------------------------------------------------------- /doc/website/source/images/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /doc/website/source/images/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/browserconfig.xml -------------------------------------------------------------------------------- /doc/website/source/images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /doc/website/source/images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /doc/website/source/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/favicon.ico -------------------------------------------------------------------------------- /doc/website/source/images/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /doc/website/source/images/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /doc/website/source/images/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/favicon/site.webmanifest -------------------------------------------------------------------------------- /doc/website/source/images/fbh_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/fbh_logo.png -------------------------------------------------------------------------------- /doc/website/source/images/funders/bringing-fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/funders/bringing-fire.png -------------------------------------------------------------------------------- /doc/website/source/images/funders/clearful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/funders/clearful.png -------------------------------------------------------------------------------- /doc/website/source/images/funders/clickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/funders/clickup.png -------------------------------------------------------------------------------- /doc/website/source/images/funders/reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/funders/reflection.png -------------------------------------------------------------------------------- /doc/website/source/images/funders/superlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/funders/superlist.png -------------------------------------------------------------------------------- /doc/website/source/images/funders/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/funders/turtle.png -------------------------------------------------------------------------------- /doc/website/source/images/icons/bxl-discord-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/icons/bxl-discord-alt.svg -------------------------------------------------------------------------------- /doc/website/source/images/icons/bxl-flutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/icons/bxl-flutter.svg -------------------------------------------------------------------------------- /doc/website/source/images/icons/bxl-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/icons/bxl-github.svg -------------------------------------------------------------------------------- /doc/website/source/images/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/logo_big.png -------------------------------------------------------------------------------- /doc/website/source/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/images/logo_small.png -------------------------------------------------------------------------------- /doc/website/source/index.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/index.jinja -------------------------------------------------------------------------------- /doc/website/source/styles/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/about.scss -------------------------------------------------------------------------------- /doc/website/source/styles/base_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/base_layout.scss -------------------------------------------------------------------------------- /doc/website/source/styles/docs_page_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/docs_page_layout.scss -------------------------------------------------------------------------------- /doc/website/source/styles/docs_page_layout_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/docs_page_layout_dark.scss -------------------------------------------------------------------------------- /doc/website/source/styles/docs_page_layout_light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/docs_page_layout_light.scss -------------------------------------------------------------------------------- /doc/website/source/styles/funders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/funders.scss -------------------------------------------------------------------------------- /doc/website/source/styles/homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/homepage.scss -------------------------------------------------------------------------------- /doc/website/source/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/theme.scss -------------------------------------------------------------------------------- /doc/website/source/styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/styles/typography.scss -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-editor/guides/_data.yaml -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/ai/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-editor/guides/ai/overview.md -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/chat/keyboard-toolbar.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Chat Keyboard Toolbar 3 | --- 4 | Coming soon! -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/chat/overview.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Chat Overview 3 | --- 4 | Coming soon! -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/document-editors/overview.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Document Editors Overview 3 | --- 4 | Coming Soon! -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/getting-started/tour.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tour 3 | --- 4 | Coming Soon! -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-editor/guides/index.md -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/quill/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-editor/guides/quill/export.md -------------------------------------------------------------------------------- /doc/website/source/super-editor/guides/quill/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-editor/guides/quill/import.md -------------------------------------------------------------------------------- /doc/website/source/super-reader/guides/_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-reader/guides/_data.yaml -------------------------------------------------------------------------------- /doc/website/source/super-reader/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-reader/guides/index.md -------------------------------------------------------------------------------- /doc/website/source/super-reader/guides/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-reader/guides/quickstart.md -------------------------------------------------------------------------------- /doc/website/source/super-text-field/guides/_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-text-field/guides/_data.yaml -------------------------------------------------------------------------------- /doc/website/source/super-text-field/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-text-field/guides/index.md -------------------------------------------------------------------------------- /doc/website/source/super-text-field/guides/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/doc/website/source/super-text-field/guides/quickstart.md -------------------------------------------------------------------------------- /flutter_test_registry/flutter_test_repo_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/flutter_test_registry/flutter_test_repo_test.bat -------------------------------------------------------------------------------- /flutter_test_registry/flutter_test_repo_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/flutter_test_registry/flutter_test_repo_test.sh -------------------------------------------------------------------------------- /golden_runner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_runner/.gitignore -------------------------------------------------------------------------------- /golden_runner/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_runner/.metadata -------------------------------------------------------------------------------- /golden_runner/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /golden_runner/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /golden_runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_runner/README.md -------------------------------------------------------------------------------- /golden_runner/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_runner/analysis_options.yaml -------------------------------------------------------------------------------- /golden_runner/bin/goldens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_runner/bin/goldens.dart -------------------------------------------------------------------------------- /golden_runner/lib/golden_runner.dart: -------------------------------------------------------------------------------- 1 | library golden_runner; 2 | 3 | export 'src/commands.dart'; 4 | -------------------------------------------------------------------------------- /golden_runner/lib/src/commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_runner/lib/src/commands.dart -------------------------------------------------------------------------------- /golden_runner/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_runner/pubspec.yaml -------------------------------------------------------------------------------- /golden_tester.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/golden_tester.Dockerfile -------------------------------------------------------------------------------- /super_clones/bear/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/.gitignore -------------------------------------------------------------------------------- /super_clones/bear/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/.metadata -------------------------------------------------------------------------------- /super_clones/bear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/README.md -------------------------------------------------------------------------------- /super_clones/bear/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/analysis_options.yaml -------------------------------------------------------------------------------- /super_clones/bear/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/lib/app.dart -------------------------------------------------------------------------------- /super_clones/bear/lib/features/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/lib/features/home_screen.dart -------------------------------------------------------------------------------- /super_clones/bear/lib/infrastructure/editor/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/lib/infrastructure/editor/editor.dart -------------------------------------------------------------------------------- /super_clones/bear/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/lib/main.dart -------------------------------------------------------------------------------- /super_clones/bear/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/.gitignore -------------------------------------------------------------------------------- /super_clones/bear/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/bear/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /super_clones/bear/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Podfile -------------------------------------------------------------------------------- /super_clones/bear/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Podfile.lock -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /super_clones/bear/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /super_clones/bear/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /super_clones/bear/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/pubspec.lock -------------------------------------------------------------------------------- /super_clones/bear/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/bear/pubspec.yaml -------------------------------------------------------------------------------- /super_clones/google_docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/.gitignore -------------------------------------------------------------------------------- /super_clones/google_docs/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/.metadata -------------------------------------------------------------------------------- /super_clones/google_docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/README.md -------------------------------------------------------------------------------- /super_clones/google_docs/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/analysis_options.yaml -------------------------------------------------------------------------------- /super_clones/google_docs/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/android/.gitignore -------------------------------------------------------------------------------- /super_clones/google_docs/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/android/app/build.gradle -------------------------------------------------------------------------------- /super_clones/google_docs/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/android/build.gradle -------------------------------------------------------------------------------- /super_clones/google_docs/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/android/gradle.properties -------------------------------------------------------------------------------- /super_clones/google_docs/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/android/settings.gradle -------------------------------------------------------------------------------- /super_clones/google_docs/assets/images/docs_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/assets/images/docs_logo.png -------------------------------------------------------------------------------- /super_clones/google_docs/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/ios/.gitignore -------------------------------------------------------------------------------- /super_clones/google_docs/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/google_docs/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /super_clones/google_docs/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/ios/Podfile -------------------------------------------------------------------------------- /super_clones/google_docs/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/ios/Podfile.lock -------------------------------------------------------------------------------- /super_clones/google_docs/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/google_docs/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/google_docs/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_clones/google_docs/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/lib/app.dart -------------------------------------------------------------------------------- /super_clones/google_docs/lib/app_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/lib/app_menu.dart -------------------------------------------------------------------------------- /super_clones/google_docs/lib/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/lib/editor.dart -------------------------------------------------------------------------------- /super_clones/google_docs/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/lib/main.dart -------------------------------------------------------------------------------- /super_clones/google_docs/lib/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/lib/theme.dart -------------------------------------------------------------------------------- /super_clones/google_docs/lib/toolbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/lib/toolbar.dart -------------------------------------------------------------------------------- /super_clones/google_docs/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /super_clones/google_docs/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/linux/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/google_docs/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/google_docs/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/linux/main.cc -------------------------------------------------------------------------------- /super_clones/google_docs/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/linux/my_application.cc -------------------------------------------------------------------------------- /super_clones/google_docs/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/linux/my_application.h -------------------------------------------------------------------------------- /super_clones/google_docs/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/macos/.gitignore -------------------------------------------------------------------------------- /super_clones/google_docs/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/macos/Podfile -------------------------------------------------------------------------------- /super_clones/google_docs/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/macos/Podfile.lock -------------------------------------------------------------------------------- /super_clones/google_docs/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/google_docs/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/google_docs/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/pubspec.lock -------------------------------------------------------------------------------- /super_clones/google_docs/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/pubspec.yaml -------------------------------------------------------------------------------- /super_clones/google_docs/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/web/favicon.png -------------------------------------------------------------------------------- /super_clones/google_docs/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/web/icons/Icon-192.png -------------------------------------------------------------------------------- /super_clones/google_docs/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/web/icons/Icon-512.png -------------------------------------------------------------------------------- /super_clones/google_docs/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /super_clones/google_docs/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /super_clones/google_docs/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/web/index.html -------------------------------------------------------------------------------- /super_clones/google_docs/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/web/manifest.json -------------------------------------------------------------------------------- /super_clones/google_docs/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/.gitignore -------------------------------------------------------------------------------- /super_clones/google_docs/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/google_docs/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/Runner.rc -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/main.cpp -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/resource.h -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/utils.cpp -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/utils.h -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /super_clones/google_docs/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/google_docs/windows/runner/win32_window.h -------------------------------------------------------------------------------- /super_clones/ios_messenger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/.gitignore -------------------------------------------------------------------------------- /super_clones/ios_messenger/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/.metadata -------------------------------------------------------------------------------- /super_clones/ios_messenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/README.md -------------------------------------------------------------------------------- /super_clones/ios_messenger/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/analysis_options.yaml -------------------------------------------------------------------------------- /super_clones/ios_messenger/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/android/.gitignore -------------------------------------------------------------------------------- /super_clones/ios_messenger/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/android/app/build.gradle.kts -------------------------------------------------------------------------------- /super_clones/ios_messenger/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/android/build.gradle.kts -------------------------------------------------------------------------------- /super_clones/ios_messenger/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/android/gradle.properties -------------------------------------------------------------------------------- /super_clones/ios_messenger/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/android/settings.gradle.kts -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/ios/.gitignore -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/ios/Podfile -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/ios/Podfile.lock -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/ios_messenger/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_clones/ios_messenger/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/lib/app.dart -------------------------------------------------------------------------------- /super_clones/ios_messenger/lib/conversation/chat_bubbles.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /super_clones/ios_messenger/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/lib/main.dart -------------------------------------------------------------------------------- /super_clones/ios_messenger/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/pubspec.lock -------------------------------------------------------------------------------- /super_clones/ios_messenger/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/ios_messenger/pubspec.yaml -------------------------------------------------------------------------------- /super_clones/medium/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/.gitignore -------------------------------------------------------------------------------- /super_clones/medium/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/.metadata -------------------------------------------------------------------------------- /super_clones/medium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/README.md -------------------------------------------------------------------------------- /super_clones/medium/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/analysis_options.yaml -------------------------------------------------------------------------------- /super_clones/medium/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/lib/main.dart -------------------------------------------------------------------------------- /super_clones/medium/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/pubspec.lock -------------------------------------------------------------------------------- /super_clones/medium/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/pubspec.yaml -------------------------------------------------------------------------------- /super_clones/medium/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/web/favicon.png -------------------------------------------------------------------------------- /super_clones/medium/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/web/icons/Icon-192.png -------------------------------------------------------------------------------- /super_clones/medium/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/web/icons/Icon-512.png -------------------------------------------------------------------------------- /super_clones/medium/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /super_clones/medium/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /super_clones/medium/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/web/index.html -------------------------------------------------------------------------------- /super_clones/medium/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/medium/web/manifest.json -------------------------------------------------------------------------------- /super_clones/obsidian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/.gitignore -------------------------------------------------------------------------------- /super_clones/obsidian/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/.metadata -------------------------------------------------------------------------------- /super_clones/obsidian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/README.md -------------------------------------------------------------------------------- /super_clones/obsidian/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/analysis_options.yaml -------------------------------------------------------------------------------- /super_clones/obsidian/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/lib/main.dart -------------------------------------------------------------------------------- /super_clones/obsidian/lib/sidebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/lib/sidebar.dart -------------------------------------------------------------------------------- /super_clones/obsidian/lib/tabbed_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/lib/tabbed_editor.dart -------------------------------------------------------------------------------- /super_clones/obsidian/lib/vault_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/lib/vault_menu.dart -------------------------------------------------------------------------------- /super_clones/obsidian/lib/window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/lib/window.dart -------------------------------------------------------------------------------- /super_clones/obsidian/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/macos/.gitignore -------------------------------------------------------------------------------- /super_clones/obsidian/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/macos/Podfile -------------------------------------------------------------------------------- /super_clones/obsidian/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/macos/Podfile.lock -------------------------------------------------------------------------------- /super_clones/obsidian/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/obsidian/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/obsidian/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /super_clones/obsidian/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/pubspec.lock -------------------------------------------------------------------------------- /super_clones/obsidian/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/pubspec.yaml -------------------------------------------------------------------------------- /super_clones/obsidian/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/obsidian/test/widget_test.dart -------------------------------------------------------------------------------- /super_clones/quill/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/.gitignore -------------------------------------------------------------------------------- /super_clones/quill/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/.metadata -------------------------------------------------------------------------------- /super_clones/quill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/README.md -------------------------------------------------------------------------------- /super_clones/quill/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/analysis_options.yaml -------------------------------------------------------------------------------- /super_clones/quill/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/android/.gitignore -------------------------------------------------------------------------------- /super_clones/quill/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/android/app/build.gradle -------------------------------------------------------------------------------- /super_clones/quill/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/android/build.gradle -------------------------------------------------------------------------------- /super_clones/quill/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/android/gradle.properties -------------------------------------------------------------------------------- /super_clones/quill/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/android/settings.gradle -------------------------------------------------------------------------------- /super_clones/quill/assets/fonts/EB_Garamond/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/assets/fonts/EB_Garamond/OFL.txt -------------------------------------------------------------------------------- /super_clones/quill/assets/fonts/EB_Garamond/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/assets/fonts/EB_Garamond/README.txt -------------------------------------------------------------------------------- /super_clones/quill/assets/fonts/Fira_Mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/assets/fonts/Fira_Mono/OFL.txt -------------------------------------------------------------------------------- /super_clones/quill/assets/fonts/Open_Sans/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/assets/fonts/Open_Sans/OFL.txt -------------------------------------------------------------------------------- /super_clones/quill/assets/fonts/Open_Sans/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/assets/fonts/Open_Sans/README.txt -------------------------------------------------------------------------------- /super_clones/quill/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/.gitignore -------------------------------------------------------------------------------- /super_clones/quill/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /super_clones/quill/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/quill/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /super_clones/quill/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Podfile -------------------------------------------------------------------------------- /super_clones/quill/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /super_clones/quill/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/quill/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /super_clones/quill/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/quill/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_clones/quill/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /super_clones/quill/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/app.dart -------------------------------------------------------------------------------- /super_clones/quill/lib/deltas/deltas_display.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/deltas/deltas_display.dart -------------------------------------------------------------------------------- /super_clones/quill/lib/editor/blockquote_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/editor/blockquote_component.dart -------------------------------------------------------------------------------- /super_clones/quill/lib/editor/code_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/editor/code_component.dart -------------------------------------------------------------------------------- /super_clones/quill/lib/editor/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/editor/editor.dart -------------------------------------------------------------------------------- /super_clones/quill/lib/editor/toolbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/editor/toolbar.dart -------------------------------------------------------------------------------- /super_clones/quill/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/main.dart -------------------------------------------------------------------------------- /super_clones/quill/lib/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/lib/theme.dart -------------------------------------------------------------------------------- /super_clones/quill/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/.gitignore -------------------------------------------------------------------------------- /super_clones/quill/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/quill/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Podfile -------------------------------------------------------------------------------- /super_clones/quill/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Podfile.lock -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /super_clones/quill/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /super_clones/quill/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /super_clones/quill/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/pubspec.lock -------------------------------------------------------------------------------- /super_clones/quill/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/pubspec.yaml -------------------------------------------------------------------------------- /super_clones/quill/quill_js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/quill_js/index.html -------------------------------------------------------------------------------- /super_clones/quill/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/web/favicon.png -------------------------------------------------------------------------------- /super_clones/quill/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/web/icons/Icon-192.png -------------------------------------------------------------------------------- /super_clones/quill/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/web/icons/Icon-512.png -------------------------------------------------------------------------------- /super_clones/quill/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /super_clones/quill/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /super_clones/quill/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/web/index.html -------------------------------------------------------------------------------- /super_clones/quill/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/web/manifest.json -------------------------------------------------------------------------------- /super_clones/quill/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/.gitignore -------------------------------------------------------------------------------- /super_clones/quill/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/quill/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/Runner.rc -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/main.cpp -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/resource.h -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/utils.cpp -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/utils.h -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /super_clones/quill/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/quill/windows/runner/win32_window.h -------------------------------------------------------------------------------- /super_clones/slack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/.gitignore -------------------------------------------------------------------------------- /super_clones/slack/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/.metadata -------------------------------------------------------------------------------- /super_clones/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/README.md -------------------------------------------------------------------------------- /super_clones/slack/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/analysis_options.yaml -------------------------------------------------------------------------------- /super_clones/slack/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/android/.gitignore -------------------------------------------------------------------------------- /super_clones/slack/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/android/app/build.gradle -------------------------------------------------------------------------------- /super_clones/slack/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/android/build.gradle -------------------------------------------------------------------------------- /super_clones/slack/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/android/gradle.properties -------------------------------------------------------------------------------- /super_clones/slack/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/android/settings.gradle -------------------------------------------------------------------------------- /super_clones/slack/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/.gitignore -------------------------------------------------------------------------------- /super_clones/slack/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /super_clones/slack/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/slack/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /super_clones/slack/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Podfile -------------------------------------------------------------------------------- /super_clones/slack/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Podfile.lock -------------------------------------------------------------------------------- /super_clones/slack/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /super_clones/slack/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/slack/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /super_clones/slack/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/slack/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_clones/slack/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /super_clones/slack/lib/chat_thread.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/chat_thread.dart -------------------------------------------------------------------------------- /super_clones/slack/lib/domain/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/domain/message.dart -------------------------------------------------------------------------------- /super_clones/slack/lib/domain/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/domain/user.dart -------------------------------------------------------------------------------- /super_clones/slack/lib/fake_data/fake_messages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/fake_data/fake_messages.dart -------------------------------------------------------------------------------- /super_clones/slack/lib/fake_data/fake_users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/fake_data/fake_users.dart -------------------------------------------------------------------------------- /super_clones/slack/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/main.dart -------------------------------------------------------------------------------- /super_clones/slack/lib/mobile_message_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/mobile_message_editor.dart -------------------------------------------------------------------------------- /super_clones/slack/lib/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/lib/styles.dart -------------------------------------------------------------------------------- /super_clones/slack/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/.gitignore -------------------------------------------------------------------------------- /super_clones/slack/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/slack/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Podfile -------------------------------------------------------------------------------- /super_clones/slack/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Podfile.lock -------------------------------------------------------------------------------- /super_clones/slack/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_clones/slack/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /super_clones/slack/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /super_clones/slack/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /super_clones/slack/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /super_clones/slack/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_clones/slack/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /super_clones/slack/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/pubspec.lock -------------------------------------------------------------------------------- /super_clones/slack/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_clones/slack/pubspec.yaml -------------------------------------------------------------------------------- /super_editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.gitignore -------------------------------------------------------------------------------- /super_editor/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.metadata -------------------------------------------------------------------------------- /super_editor/.run/Clone_ Quill.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Clone_ Quill.run.xml -------------------------------------------------------------------------------- /super_editor/.run/Example - All Demos (debug).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Example - All Demos (debug).run.xml -------------------------------------------------------------------------------- /super_editor/.run/Example - Chat.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Example - Chat.run.xml -------------------------------------------------------------------------------- /super_editor/.run/Example - Docs (debug).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Example - Docs (debug).run.xml -------------------------------------------------------------------------------- /super_editor/.run/Example.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Example.run.xml -------------------------------------------------------------------------------- /super_editor/.run/Flutter - Text Field.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Flutter - Text Field.run.xml -------------------------------------------------------------------------------- /super_editor/.run/Panel Behind Keyboard.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Panel Behind Keyboard.run.xml -------------------------------------------------------------------------------- /super_editor/.run/Super Editor Demo (debug).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Super Editor Demo (debug).run.xml -------------------------------------------------------------------------------- /super_editor/.run/Super Reader Demo (debug).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Super Reader Demo (debug).run.xml -------------------------------------------------------------------------------- /super_editor/.run/Super Text Field (debug).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.run/Super Text Field (debug).run.xml -------------------------------------------------------------------------------- /super_editor/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/.vscode/settings.json -------------------------------------------------------------------------------- /super_editor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/CHANGELOG.md -------------------------------------------------------------------------------- /super_editor/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/CONTRIBUTING.md -------------------------------------------------------------------------------- /super_editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/LICENSE -------------------------------------------------------------------------------- /super_editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/README.md -------------------------------------------------------------------------------- /super_editor/README_RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/README_RELEASING.md -------------------------------------------------------------------------------- /super_editor/README_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/README_TESTS.md -------------------------------------------------------------------------------- /super_editor/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor/dart_test.yaml: -------------------------------------------------------------------------------- 1 | tags: 2 | golden: 3 | -------------------------------------------------------------------------------- /super_editor/doc/marketing/readme-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/doc/marketing/readme-header.png -------------------------------------------------------------------------------- /super_editor/doc/marketing/screenshot_mac_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/doc/marketing/screenshot_mac_desktop.png -------------------------------------------------------------------------------- /super_editor/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/.gitignore -------------------------------------------------------------------------------- /super_editor/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/.metadata -------------------------------------------------------------------------------- /super_editor/example/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/.vscode/settings.json -------------------------------------------------------------------------------- /super_editor/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/README.md -------------------------------------------------------------------------------- /super_editor/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/android/.gitignore -------------------------------------------------------------------------------- /super_editor/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/android/app/build.gradle -------------------------------------------------------------------------------- /super_editor/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/android/build.gradle -------------------------------------------------------------------------------- /super_editor/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/android/gradle.properties -------------------------------------------------------------------------------- /super_editor/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/android/settings.gradle -------------------------------------------------------------------------------- /super_editor/example/assets/fonts/Ubuntu_Mono/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/assets/fonts/Ubuntu_Mono/UFL.txt -------------------------------------------------------------------------------- /super_editor/example/assets/images/superlist_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/assets/images/superlist_logo.png -------------------------------------------------------------------------------- /super_editor/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/ios/.gitignore -------------------------------------------------------------------------------- /super_editor/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_editor/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /super_editor/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/ios/Podfile -------------------------------------------------------------------------------- /super_editor/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/ios/Podfile.lock -------------------------------------------------------------------------------- /super_editor/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_editor/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_editor/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_editor/example/l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/l10n.yaml -------------------------------------------------------------------------------- /super_editor/example/lib/demos/demo_paragraphs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/demos/demo_paragraphs.dart -------------------------------------------------------------------------------- /super_editor/example/lib/demos/demo_rtl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/demos/demo_rtl.dart -------------------------------------------------------------------------------- /super_editor/example/lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /super_editor/example/lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /super_editor/example/lib/l10n/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/l10n/app_localizations.dart -------------------------------------------------------------------------------- /super_editor/example/lib/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/logging.dart -------------------------------------------------------------------------------- /super_editor/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/main.dart -------------------------------------------------------------------------------- /super_editor/example/lib/main_super_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/main_super_editor.dart -------------------------------------------------------------------------------- /super_editor/example/lib/main_super_editor_chat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/main_super_editor_chat.dart -------------------------------------------------------------------------------- /super_editor/example/lib/main_super_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/main_super_reader.dart -------------------------------------------------------------------------------- /super_editor/example/lib/main_super_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/lib/main_super_text_field.dart -------------------------------------------------------------------------------- /super_editor/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/macos/.gitignore -------------------------------------------------------------------------------- /super_editor/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/macos/Podfile -------------------------------------------------------------------------------- /super_editor/example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/macos/Podfile.lock -------------------------------------------------------------------------------- /super_editor/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_editor/example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_editor/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/pubspec.yaml -------------------------------------------------------------------------------- /super_editor/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/web/favicon.png -------------------------------------------------------------------------------- /super_editor/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /super_editor/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /super_editor/example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /super_editor/example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /super_editor/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/web/index.html -------------------------------------------------------------------------------- /super_editor/example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/web/manifest.json -------------------------------------------------------------------------------- /super_editor/example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/.gitignore -------------------------------------------------------------------------------- /super_editor/example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /super_editor/example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /super_editor/example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /super_editor/example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/resource.h -------------------------------------------------------------------------------- /super_editor/example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /super_editor/example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/utils.h -------------------------------------------------------------------------------- /super_editor/example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /super_editor/example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /super_editor/example_chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/.gitignore -------------------------------------------------------------------------------- /super_editor/example_chat/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/.metadata -------------------------------------------------------------------------------- /super_editor/example_chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/README.md -------------------------------------------------------------------------------- /super_editor/example_chat/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor/example_chat/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/android/.gitignore -------------------------------------------------------------------------------- /super_editor/example_chat/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/android/app/build.gradle -------------------------------------------------------------------------------- /super_editor/example_chat/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/android/build.gradle -------------------------------------------------------------------------------- /super_editor/example_chat/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/android/gradle.properties -------------------------------------------------------------------------------- /super_editor/example_chat/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/android/settings.gradle -------------------------------------------------------------------------------- /super_editor/example_chat/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/ios/.gitignore -------------------------------------------------------------------------------- /super_editor/example_chat/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_editor/example_chat/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/ios/Podfile -------------------------------------------------------------------------------- /super_editor/example_chat/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/ios/Podfile.lock -------------------------------------------------------------------------------- /super_editor/example_chat/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_editor/example_chat/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_editor/example_chat/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/lib/main.dart -------------------------------------------------------------------------------- /super_editor/example_chat/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /super_editor/example_chat/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/linux/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example_chat/linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/linux/runner/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example_chat/linux/runner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/linux/runner/main.cc -------------------------------------------------------------------------------- /super_editor/example_chat/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/macos/.gitignore -------------------------------------------------------------------------------- /super_editor/example_chat/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/macos/Podfile -------------------------------------------------------------------------------- /super_editor/example_chat/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/macos/Podfile.lock -------------------------------------------------------------------------------- /super_editor/example_chat/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_editor/example_chat/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/pubspec.lock -------------------------------------------------------------------------------- /super_editor/example_chat/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/pubspec.yaml -------------------------------------------------------------------------------- /super_editor/example_chat/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/web/favicon.png -------------------------------------------------------------------------------- /super_editor/example_chat/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/web/icons/Icon-192.png -------------------------------------------------------------------------------- /super_editor/example_chat/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/web/icons/Icon-512.png -------------------------------------------------------------------------------- /super_editor/example_chat/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/web/index.html -------------------------------------------------------------------------------- /super_editor/example_chat/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/web/manifest.json -------------------------------------------------------------------------------- /super_editor/example_chat/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/windows/.gitignore -------------------------------------------------------------------------------- /super_editor/example_chat/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/windows/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example_chat/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/windows/runner/Runner.rc -------------------------------------------------------------------------------- /super_editor/example_chat/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/windows/runner/main.cpp -------------------------------------------------------------------------------- /super_editor/example_chat/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/windows/runner/resource.h -------------------------------------------------------------------------------- /super_editor/example_chat/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/windows/runner/utils.cpp -------------------------------------------------------------------------------- /super_editor/example_chat/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_chat/windows/runner/utils.h -------------------------------------------------------------------------------- /super_editor/example_perf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/.gitignore -------------------------------------------------------------------------------- /super_editor/example_perf/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/.metadata -------------------------------------------------------------------------------- /super_editor/example_perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/README.md -------------------------------------------------------------------------------- /super_editor/example_perf/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor/example_perf/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/android/.gitignore -------------------------------------------------------------------------------- /super_editor/example_perf/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/android/app/build.gradle -------------------------------------------------------------------------------- /super_editor/example_perf/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/android/build.gradle -------------------------------------------------------------------------------- /super_editor/example_perf/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/android/gradle.properties -------------------------------------------------------------------------------- /super_editor/example_perf/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/android/settings.gradle -------------------------------------------------------------------------------- /super_editor/example_perf/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/ios/.gitignore -------------------------------------------------------------------------------- /super_editor/example_perf/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_editor/example_perf/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/ios/Podfile -------------------------------------------------------------------------------- /super_editor/example_perf/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_editor/example_perf/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_editor/example_perf/lib/demos/rebuild_demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/lib/demos/rebuild_demo.dart -------------------------------------------------------------------------------- /super_editor/example_perf/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/lib/main.dart -------------------------------------------------------------------------------- /super_editor/example_perf/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /super_editor/example_perf/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/linux/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example_perf/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/linux/main.cc -------------------------------------------------------------------------------- /super_editor/example_perf/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/linux/my_application.cc -------------------------------------------------------------------------------- /super_editor/example_perf/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/linux/my_application.h -------------------------------------------------------------------------------- /super_editor/example_perf/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/macos/.gitignore -------------------------------------------------------------------------------- /super_editor/example_perf/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/macos/Podfile -------------------------------------------------------------------------------- /super_editor/example_perf/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_editor/example_perf/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/pubspec.lock -------------------------------------------------------------------------------- /super_editor/example_perf/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/pubspec.yaml -------------------------------------------------------------------------------- /super_editor/example_perf/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/web/favicon.png -------------------------------------------------------------------------------- /super_editor/example_perf/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/web/icons/Icon-192.png -------------------------------------------------------------------------------- /super_editor/example_perf/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/web/icons/Icon-512.png -------------------------------------------------------------------------------- /super_editor/example_perf/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/web/index.html -------------------------------------------------------------------------------- /super_editor/example_perf/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/web/manifest.json -------------------------------------------------------------------------------- /super_editor/example_perf/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/windows/.gitignore -------------------------------------------------------------------------------- /super_editor/example_perf/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/windows/CMakeLists.txt -------------------------------------------------------------------------------- /super_editor/example_perf/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/windows/runner/Runner.rc -------------------------------------------------------------------------------- /super_editor/example_perf/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/windows/runner/main.cpp -------------------------------------------------------------------------------- /super_editor/example_perf/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/windows/runner/resource.h -------------------------------------------------------------------------------- /super_editor/example_perf/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/windows/runner/utils.cpp -------------------------------------------------------------------------------- /super_editor/example_perf/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/example_perf/windows/runner/utils.h -------------------------------------------------------------------------------- /super_editor/lib/src/chat/message_page_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/chat/message_page_scaffold.dart -------------------------------------------------------------------------------- /super_editor/lib/src/chat/super_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/chat/super_message.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/document.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/document.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/document_composer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/document_composer.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/document_debug_paint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/document_debug_paint.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/document_interaction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/document_interaction.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/document_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/document_layout.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/document_selection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/document_selection.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/edit_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/edit_context.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/editor.dart -------------------------------------------------------------------------------- /super_editor/lib/src/core/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/core/styles.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/attributions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/attributions.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/blockquote.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/blockquote.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/image.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/list_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/list_items.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/paragraph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/paragraph.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/super_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/super_editor.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/tasks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/tasks.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/text.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/text_ai.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/text_ai.dart -------------------------------------------------------------------------------- /super_editor/lib/src/default_editor/text_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/default_editor/text_tools.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/_logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/_logging.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/_scrolling.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/_scrolling.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/actions.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/keyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/keyboard.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/links.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/links.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/popovers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/popovers.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/scrolling_diagnostics/scrolling_diagnostics.dart: -------------------------------------------------------------------------------- 1 | export '_scrolling_minimap.dart'; 2 | -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/strings.dart -------------------------------------------------------------------------------- /super_editor/lib/src/infrastructure/text_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/infrastructure/text_input.dart -------------------------------------------------------------------------------- /super_editor/lib/src/super_reader/reader_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/super_reader/reader_context.dart -------------------------------------------------------------------------------- /super_editor/lib/src/super_reader/super_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/super_reader/super_reader.dart -------------------------------------------------------------------------------- /super_editor/lib/src/super_reader/tasks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/super_reader/tasks.dart -------------------------------------------------------------------------------- /super_editor/lib/src/super_textfield/ios/caret.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/super_textfield/ios/caret.dart -------------------------------------------------------------------------------- /super_editor/lib/src/super_textfield/metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/super_textfield/metrics.dart -------------------------------------------------------------------------------- /super_editor/lib/src/super_textfield/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/super_textfield/styles.dart -------------------------------------------------------------------------------- /super_editor/lib/src/test/ime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/test/ime.dart -------------------------------------------------------------------------------- /super_editor/lib/src/test/test_globals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/test/test_globals.dart -------------------------------------------------------------------------------- /super_editor/lib/src/undo_redo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/src/undo_redo.dart -------------------------------------------------------------------------------- /super_editor/lib/super_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/super_editor.dart -------------------------------------------------------------------------------- /super_editor/lib/super_editor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/super_editor_test.dart -------------------------------------------------------------------------------- /super_editor/lib/super_reader_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/super_reader_test.dart -------------------------------------------------------------------------------- /super_editor/lib/super_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/lib/super_text_field.dart -------------------------------------------------------------------------------- /super_editor/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/pubspec.yaml -------------------------------------------------------------------------------- /super_editor/test/flutter_test_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/flutter_test_config.dart -------------------------------------------------------------------------------- /super_editor/test/infrastructure/strings_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/infrastructure/strings_test.dart -------------------------------------------------------------------------------- /super_editor/test/super_editor/bug_fix_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/super_editor/bug_fix_test.dart -------------------------------------------------------------------------------- /super_editor/test/super_editor/test_documents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/super_editor/test_documents.dart -------------------------------------------------------------------------------- /super_editor/test/super_reader/reader_test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/super_reader/reader_test_tools.dart -------------------------------------------------------------------------------- /super_editor/test/super_reader/test_documents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/super_reader/test_documents.dart -------------------------------------------------------------------------------- /super_editor/test/test_flutter_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/test_flutter_extensions.dart -------------------------------------------------------------------------------- /super_editor/test/test_runners.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/test_runners.dart -------------------------------------------------------------------------------- /super_editor/test/test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/test_tools.dart -------------------------------------------------------------------------------- /super_editor/test/test_tools_user_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test/test_tools_user_input.dart -------------------------------------------------------------------------------- /super_editor/test_goldens/flutter_test_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test_goldens/flutter_test_config.dart -------------------------------------------------------------------------------- /super_editor/test_goldens/test_tools_goldens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor/test_goldens/test_tools_goldens.dart -------------------------------------------------------------------------------- /super_editor_clipboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/.gitignore -------------------------------------------------------------------------------- /super_editor_clipboard/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/.metadata -------------------------------------------------------------------------------- /super_editor_clipboard/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/CHANGELOG.md -------------------------------------------------------------------------------- /super_editor_clipboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/LICENSE -------------------------------------------------------------------------------- /super_editor_clipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/README.md -------------------------------------------------------------------------------- /super_editor_clipboard/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor_clipboard/lib/src/document_copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/lib/src/document_copy.dart -------------------------------------------------------------------------------- /super_editor_clipboard/lib/src/super_editor_copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/lib/src/super_editor_copy.dart -------------------------------------------------------------------------------- /super_editor_clipboard/lib/src/super_reader_copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/lib/src/super_reader_copy.dart -------------------------------------------------------------------------------- /super_editor_clipboard/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_clipboard/pubspec.yaml -------------------------------------------------------------------------------- /super_editor_markdown/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/.gitignore -------------------------------------------------------------------------------- /super_editor_markdown/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/CHANGELOG.md -------------------------------------------------------------------------------- /super_editor_markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/LICENSE -------------------------------------------------------------------------------- /super_editor_markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/README.md -------------------------------------------------------------------------------- /super_editor_markdown/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor_markdown/lib/src/image_syntax.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/lib/src/image_syntax.dart -------------------------------------------------------------------------------- /super_editor_markdown/lib/src/table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/lib/src/table.dart -------------------------------------------------------------------------------- /super_editor_markdown/lib/super_editor_markdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/lib/super_editor_markdown.dart -------------------------------------------------------------------------------- /super_editor_markdown/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/pubspec.yaml -------------------------------------------------------------------------------- /super_editor_markdown/test/flutter_test_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/test/flutter_test_config.dart -------------------------------------------------------------------------------- /super_editor_markdown/test/table_parser_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/test/table_parser_test.dart -------------------------------------------------------------------------------- /super_editor_markdown/test/test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_markdown/test/test_tools.dart -------------------------------------------------------------------------------- /super_editor_quill/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/.gitignore -------------------------------------------------------------------------------- /super_editor_quill/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/.metadata -------------------------------------------------------------------------------- /super_editor_quill/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/CHANGELOG.md -------------------------------------------------------------------------------- /super_editor_quill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/LICENSE -------------------------------------------------------------------------------- /super_editor_quill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/README.md -------------------------------------------------------------------------------- /super_editor_quill/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor_quill/lib/src/content/formatting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/lib/src/content/formatting.dart -------------------------------------------------------------------------------- /super_editor_quill/lib/src/content/multimedia.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/lib/src/content/multimedia.dart -------------------------------------------------------------------------------- /super_editor_quill/lib/src/parsing/block_formats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/lib/src/parsing/block_formats.dart -------------------------------------------------------------------------------- /super_editor_quill/lib/src/parsing/parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/lib/src/parsing/parser.dart -------------------------------------------------------------------------------- /super_editor_quill/lib/super_editor_quill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/lib/super_editor_quill.dart -------------------------------------------------------------------------------- /super_editor_quill/lib/super_editor_quill_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/lib/super_editor_quill_test.dart -------------------------------------------------------------------------------- /super_editor_quill/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/pubspec.yaml -------------------------------------------------------------------------------- /super_editor_quill/test/attributed_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/test/attributed_text.dart -------------------------------------------------------------------------------- /super_editor_quill/test/parsing/parsing_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/test/parsing/parsing_test.dart -------------------------------------------------------------------------------- /super_editor_quill/test/serializing_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/test/serializing_test.dart -------------------------------------------------------------------------------- /super_editor_quill/test/test_documents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_quill/test/test_documents.dart -------------------------------------------------------------------------------- /super_editor_spellcheck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/.gitignore -------------------------------------------------------------------------------- /super_editor_spellcheck/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/.metadata -------------------------------------------------------------------------------- /super_editor_spellcheck/.run/main.dart.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/.run/main.dart.run.xml -------------------------------------------------------------------------------- /super_editor_spellcheck/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /super_editor_spellcheck/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/LICENSE -------------------------------------------------------------------------------- /super_editor_spellcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/README.md -------------------------------------------------------------------------------- /super_editor_spellcheck/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor_spellcheck/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/.gitignore -------------------------------------------------------------------------------- /super_editor_spellcheck/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/.metadata -------------------------------------------------------------------------------- /super_editor_spellcheck/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/README.md -------------------------------------------------------------------------------- /super_editor_spellcheck/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/analysis_options.yaml -------------------------------------------------------------------------------- /super_editor_spellcheck/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/android/.gitignore -------------------------------------------------------------------------------- /super_editor_spellcheck/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/android/build.gradle -------------------------------------------------------------------------------- /super_editor_spellcheck/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/ios/.gitignore -------------------------------------------------------------------------------- /super_editor_spellcheck/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/ios/Podfile -------------------------------------------------------------------------------- /super_editor_spellcheck/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/ios/Podfile.lock -------------------------------------------------------------------------------- /super_editor_spellcheck/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_editor_spellcheck/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_editor_spellcheck/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/macos/.gitignore -------------------------------------------------------------------------------- /super_editor_spellcheck/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/macos/Podfile -------------------------------------------------------------------------------- /super_editor_spellcheck/example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/macos/Podfile.lock -------------------------------------------------------------------------------- /super_editor_spellcheck/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/pubspec.lock -------------------------------------------------------------------------------- /super_editor_spellcheck/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/example/pubspec.yaml -------------------------------------------------------------------------------- /super_editor_spellcheck/pigeon/messages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/pigeon/messages.dart -------------------------------------------------------------------------------- /super_editor_spellcheck/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_editor_spellcheck/pubspec.yaml -------------------------------------------------------------------------------- /super_keyboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/.gitignore -------------------------------------------------------------------------------- /super_keyboard/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/.metadata -------------------------------------------------------------------------------- /super_keyboard/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/CHANGELOG.md -------------------------------------------------------------------------------- /super_keyboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/LICENSE -------------------------------------------------------------------------------- /super_keyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/README.md -------------------------------------------------------------------------------- /super_keyboard/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/analysis_options.yaml -------------------------------------------------------------------------------- /super_keyboard/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/android/.gitignore -------------------------------------------------------------------------------- /super_keyboard/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/android/build.gradle -------------------------------------------------------------------------------- /super_keyboard/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'super_keyboard' 2 | -------------------------------------------------------------------------------- /super_keyboard/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /super_keyboard/doc/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/.gitignore -------------------------------------------------------------------------------- /super_keyboard/doc/website/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/analysis_options.yaml -------------------------------------------------------------------------------- /super_keyboard/doc/website/bin/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/bin/main.dart -------------------------------------------------------------------------------- /super_keyboard/doc/website/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/pubspec.yaml -------------------------------------------------------------------------------- /super_keyboard/doc/website/source/_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/source/_data.yaml -------------------------------------------------------------------------------- /super_keyboard/doc/website/source/guides/_data.yaml: -------------------------------------------------------------------------------- 1 | tags: guides 2 | -------------------------------------------------------------------------------- /super_keyboard/doc/website/source/guides/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/source/guides/android.md -------------------------------------------------------------------------------- /super_keyboard/doc/website/source/guides/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/source/guides/ios.md -------------------------------------------------------------------------------- /super_keyboard/doc/website/source/guides/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/source/guides/testing.md -------------------------------------------------------------------------------- /super_keyboard/doc/website/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/doc/website/source/index.md -------------------------------------------------------------------------------- /super_keyboard/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/.gitignore -------------------------------------------------------------------------------- /super_keyboard/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/.metadata -------------------------------------------------------------------------------- /super_keyboard/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/README.md -------------------------------------------------------------------------------- /super_keyboard/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/analysis_options.yaml -------------------------------------------------------------------------------- /super_keyboard/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/android/.gitignore -------------------------------------------------------------------------------- /super_keyboard/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/android/app/build.gradle -------------------------------------------------------------------------------- /super_keyboard/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/android/build.gradle -------------------------------------------------------------------------------- /super_keyboard/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/android/gradle.properties -------------------------------------------------------------------------------- /super_keyboard/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/android/settings.gradle -------------------------------------------------------------------------------- /super_keyboard/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/ios/.gitignore -------------------------------------------------------------------------------- /super_keyboard/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /super_keyboard/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /super_keyboard/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/ios/Podfile -------------------------------------------------------------------------------- /super_keyboard/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/ios/Podfile.lock -------------------------------------------------------------------------------- /super_keyboard/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /super_keyboard/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /super_keyboard/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /super_keyboard/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/lib/main.dart -------------------------------------------------------------------------------- /super_keyboard/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/pubspec.lock -------------------------------------------------------------------------------- /super_keyboard/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/example/pubspec.yaml -------------------------------------------------------------------------------- /super_keyboard/golden_tester.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/golden_tester.Dockerfile -------------------------------------------------------------------------------- /super_keyboard/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/ios/.gitignore -------------------------------------------------------------------------------- /super_keyboard/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /super_keyboard/ios/Classes/SuperKeyboardPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/ios/Classes/SuperKeyboardPlugin.swift -------------------------------------------------------------------------------- /super_keyboard/ios/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/ios/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /super_keyboard/ios/super_keyboard.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/ios/super_keyboard.podspec -------------------------------------------------------------------------------- /super_keyboard/lib/src/keyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/lib/src/keyboard.dart -------------------------------------------------------------------------------- /super_keyboard/lib/src/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/lib/src/logging.dart -------------------------------------------------------------------------------- /super_keyboard/lib/src/super_keyboard_android.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/lib/src/super_keyboard_android.dart -------------------------------------------------------------------------------- /super_keyboard/lib/src/super_keyboard_ios.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/lib/src/super_keyboard_ios.dart -------------------------------------------------------------------------------- /super_keyboard/lib/src/super_keyboard_unified.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/lib/src/super_keyboard_unified.dart -------------------------------------------------------------------------------- /super_keyboard/lib/super_keyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/lib/super_keyboard.dart -------------------------------------------------------------------------------- /super_keyboard/lib/super_keyboard_test.dart: -------------------------------------------------------------------------------- 1 | export 'test/keyboard_simulator.dart'; 2 | -------------------------------------------------------------------------------- /super_keyboard/lib/test/keyboard_simulator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/lib/test/keyboard_simulator.dart -------------------------------------------------------------------------------- /super_keyboard/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/pubspec.yaml -------------------------------------------------------------------------------- /super_keyboard/test/keyboard_simulation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_keyboard/test/keyboard_simulation_test.dart -------------------------------------------------------------------------------- /super_text_layout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/.gitignore -------------------------------------------------------------------------------- /super_text_layout/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/CHANGELOG.md -------------------------------------------------------------------------------- /super_text_layout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/LICENSE -------------------------------------------------------------------------------- /super_text_layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/README.md -------------------------------------------------------------------------------- /super_text_layout/README_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/README_TESTS.md -------------------------------------------------------------------------------- /super_text_layout/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/analysis_options.yaml -------------------------------------------------------------------------------- /super_text_layout/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/.gitignore -------------------------------------------------------------------------------- /super_text_layout/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/.metadata -------------------------------------------------------------------------------- /super_text_layout/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/README.md -------------------------------------------------------------------------------- /super_text_layout/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/analysis_options.yaml -------------------------------------------------------------------------------- /super_text_layout/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/lib/main.dart -------------------------------------------------------------------------------- /super_text_layout/example/lib/rainbow_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/lib/rainbow_builder.dart -------------------------------------------------------------------------------- /super_text_layout/example/lib/typing_robot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/lib/typing_robot.dart -------------------------------------------------------------------------------- /super_text_layout/example/lib/user_label_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/lib/user_label_layer.dart -------------------------------------------------------------------------------- /super_text_layout/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/macos/.gitignore -------------------------------------------------------------------------------- /super_text_layout/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /super_text_layout/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /super_text_layout/example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /super_text_layout/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/pubspec.lock -------------------------------------------------------------------------------- /super_text_layout/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/example/pubspec.yaml -------------------------------------------------------------------------------- /super_text_layout/lib/src/caret_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/src/caret_layer.dart -------------------------------------------------------------------------------- /super_text_layout/lib/src/inline_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/src/inline_widgets.dart -------------------------------------------------------------------------------- /super_text_layout/lib/src/super_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/src/super_text.dart -------------------------------------------------------------------------------- /super_text_layout/lib/src/super_text_inspector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/src/super_text_inspector.dart -------------------------------------------------------------------------------- /super_text_layout/lib/src/text_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/src/text_layout.dart -------------------------------------------------------------------------------- /super_text_layout/lib/src/text_selection_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/src/text_selection_layer.dart -------------------------------------------------------------------------------- /super_text_layout/lib/src/text_underline_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/src/text_underline_layer.dart -------------------------------------------------------------------------------- /super_text_layout/lib/super_text_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/super_text_layout.dart -------------------------------------------------------------------------------- /super_text_layout/lib/super_text_layout_inspector.dart: -------------------------------------------------------------------------------- 1 | export 'src/super_text_inspector.dart'; 2 | -------------------------------------------------------------------------------- /super_text_layout/lib/super_text_layout_logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/lib/super_text_layout_logging.dart -------------------------------------------------------------------------------- /super_text_layout/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/pubspec.yaml -------------------------------------------------------------------------------- /super_text_layout/test/blink_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test/blink_controller_test.dart -------------------------------------------------------------------------------- /super_text_layout/test/caret_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test/caret_layer_test.dart -------------------------------------------------------------------------------- /super_text_layout/test/flutter_test_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test/flutter_test_config.dart -------------------------------------------------------------------------------- /super_text_layout/test/super_text_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test/super_text_test.dart -------------------------------------------------------------------------------- /super_text_layout/test/test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test/test_tools.dart -------------------------------------------------------------------------------- /super_text_layout/test_goldens/caret_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test_goldens/caret_layer_test.dart -------------------------------------------------------------------------------- /super_text_layout/test_goldens/super_text_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test_goldens/super_text_test.dart -------------------------------------------------------------------------------- /super_text_layout/test_goldens/test_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/super_text_layout/test_goldens/test_tools.dart -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/.metadata -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/README.md -------------------------------------------------------------------------------- /website/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lint/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /website/assets/fonts/Aeonik-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/fonts/Aeonik-Bold.woff -------------------------------------------------------------------------------- /website/assets/fonts/Aeonik-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/fonts/Aeonik-Light.woff -------------------------------------------------------------------------------- /website/assets/fonts/Aeonik-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/fonts/Aeonik-Regular.woff -------------------------------------------------------------------------------- /website/assets/fonts/Aeonik-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/fonts/Aeonik-Thin.woff -------------------------------------------------------------------------------- /website/assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/images/background.png -------------------------------------------------------------------------------- /website/assets/images/dart_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/images/dart_logo.png -------------------------------------------------------------------------------- /website/assets/images/ic_customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/images/ic_customize.png -------------------------------------------------------------------------------- /website/assets/images/ic_ready_to_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/images/ic_ready_to_go.png -------------------------------------------------------------------------------- /website/assets/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/images/logo.gif -------------------------------------------------------------------------------- /website/assets/images/logo_light_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/assets/images/logo_light_bg.gif -------------------------------------------------------------------------------- /website/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/build.sh -------------------------------------------------------------------------------- /website/lib/breakpoints.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/breakpoints.dart -------------------------------------------------------------------------------- /website/lib/homepage/call_to_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/call_to_action.dart -------------------------------------------------------------------------------- /website/lib/homepage/editor_toolbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/editor_toolbar.dart -------------------------------------------------------------------------------- /website/lib/homepage/editor_video_showcase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/editor_video_showcase.dart -------------------------------------------------------------------------------- /website/lib/homepage/featured_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/featured_editor.dart -------------------------------------------------------------------------------- /website/lib/homepage/features.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/features.dart -------------------------------------------------------------------------------- /website/lib/homepage/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/footer.dart -------------------------------------------------------------------------------- /website/lib/homepage/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/header.dart -------------------------------------------------------------------------------- /website/lib/homepage/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/home_page.dart -------------------------------------------------------------------------------- /website/lib/homepage/inside_the_toolbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/homepage/inside_the_toolbox.dart -------------------------------------------------------------------------------- /website/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/main.dart -------------------------------------------------------------------------------- /website/lib/shims/dart_ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/shims/dart_ui.dart -------------------------------------------------------------------------------- /website/lib/shims/dart_ui_fake.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/lib/shims/dart_ui_fake.dart -------------------------------------------------------------------------------- /website/lib/shims/dart_ui_real.dart: -------------------------------------------------------------------------------- 1 | export 'dart:ui'; 2 | -------------------------------------------------------------------------------- /website/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/pubspec.lock -------------------------------------------------------------------------------- /website/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/pubspec.yaml -------------------------------------------------------------------------------- /website/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/web/favicon.png -------------------------------------------------------------------------------- /website/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flutter-Bounty-Hunters/super_editor/HEAD/website/web/index.html --------------------------------------------------------------------------------