├── .github ├── FUNDING.yml ├── stale.yml └── workflows │ ├── pub_publish.yml │ └── runnable.yml ├── .gitignore ├── .run ├── Generate all examples.run.xml ├── generate example.run.xml ├── generate example1.run.xml ├── generate example_fast_mode.run.xml ├── generate example_getx.run.xml └── generate example_route_extension.run.xml ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README-ZH.md ├── README.md ├── analysis_options.yaml ├── bin └── ff_annotation_route.dart ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── ff_annotation_route_commands ├── lib │ ├── example_route.dart │ ├── example_routes.dart │ ├── main.dart │ └── src │ │ ├── model │ │ ├── test_model.dart │ │ ├── test_model1.dart │ │ └── test_model2.dart │ │ ├── pages │ │ ├── complex │ │ │ ├── test_page_d.dart │ │ │ ├── test_page_e.dart │ │ │ └── test_page_f.dart │ │ ├── func │ │ │ ├── func.dart │ │ │ └── func.g.dart │ │ ├── main_page.dart │ │ ├── simple │ │ │ ├── test_page_a.dart │ │ │ ├── test_page_b.dart │ │ │ ├── test_page_c.dart │ │ │ ├── test_page_c_copy.dart │ │ │ └── test_page_c_copy_copy.dart │ │ └── super_parameters │ │ │ └── test_page_super_parameters.dart │ │ └── typedef.dart ├── module_a │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── ff_annotation_route_commands │ ├── lib │ │ ├── module_a_route.dart │ │ └── src │ │ │ ├── mode │ │ │ └── mode.dart │ │ │ ├── test_page_b.dart │ │ │ ├── test_page_c.dart │ │ │ ├── test_page_d.dart │ │ │ └── test_page_f.dart │ └── pubspec.yaml ├── module_b │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ └── module_b.dart │ └── pubspec.yaml └── pubspec.yaml ├── example1 ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── ff_annotation_route_commands ├── lib │ ├── example1_route.dart │ ├── example1_routes.dart │ ├── main.dart │ ├── nested_router_demo.dart │ ├── simple_demo.dart │ └── src │ │ ├── model │ │ ├── test_model.dart │ │ └── test_model1.dart │ │ └── pages │ │ ├── complex │ │ ├── test_page_d.dart │ │ ├── test_page_e.dart │ │ └── test_page_f.dart │ │ ├── main_page.dart │ │ └── simple │ │ ├── test_page_a.dart │ │ ├── test_page_b.dart │ │ ├── test_page_c.dart │ │ └── test_page_g.dart ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── example_fast_mode ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example_fast_mode │ │ │ │ │ └── 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 ├── ff_annotation_route_commands ├── 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 ├── lib │ ├── example_fast_mode_route.dart │ ├── example_fast_mode_routes.dart │ ├── main.dart │ └── src │ │ ├── model │ │ ├── test_model.dart │ │ └── test_model1.dart │ │ └── pages │ │ ├── complex │ │ ├── test_page_d.dart │ │ └── test_page_e.dart │ │ ├── func │ │ ├── func.dart │ │ └── func.g.dart │ │ ├── main_page.dart │ │ └── simple │ │ ├── test_page_a.dart │ │ ├── test_page_b.dart │ │ ├── test_page_c.dart │ │ ├── test_page_c_copy.dart │ │ └── test_page_c_copy_copy.dart ├── module_a │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── ff_annotation_route_commands │ ├── lib │ │ ├── module_a_fast_route.dart │ │ └── src │ │ │ ├── test_page_b.dart │ │ │ ├── test_page_c.dart │ │ │ ├── test_page_d.dart │ │ │ └── test_page_f.dart │ └── pubspec.yaml └── pubspec.yaml ├── example_getx ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── ff_annotation_route_commands ├── lib │ ├── example_getx_route.dart │ ├── example_getx_routes.dart │ ├── main.dart │ └── src │ │ ├── bindings │ │ └── bindings1.dart │ │ ├── controller │ │ ├── controller1.dart │ │ └── controller2.dart │ │ └── pages │ │ ├── bindings_page.dart │ │ ├── controller_page.dart │ │ ├── counter_page.dart │ │ ├── item_page.dart │ │ └── main_page.dart └── pubspec.yaml ├── example_go_router ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example_go_router │ │ │ │ │ └── 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 ├── ff_annotation_route_commands ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── 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 │ ├── example_go_router_route.dart │ ├── example_go_router_routes.dart │ ├── main.dart │ └── src │ │ ├── pages │ │ ├── login_page.dart │ │ ├── page_a.dart │ │ ├── page_b.dart │ │ ├── shell_container.dart │ │ ├── tab_home_page.dart │ │ ├── tab_profile_page.dart │ │ └── tab_settings_page.dart │ │ ├── router │ │ ├── binding.dart │ │ ├── external_link_helper.dart │ │ ├── go_router_route_lifecycle.dart │ │ ├── interceptors │ │ │ ├── interface.dart │ │ │ ├── login_interceptor.dart │ │ │ └── permission_interceptor.dart │ │ ├── navigator.dart │ │ ├── page_route.dart │ │ └── router.dart │ │ └── user.dart └── pubspec.yaml ├── example_route_extension ├── .gitignore ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example_route_extension │ │ │ │ │ └── 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 ├── ff_annotation_route_commands ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── example_route_extension_route.dart │ ├── example_route_extension_routes.dart │ ├── main.dart │ └── src │ │ ├── interceptors │ │ ├── login_interceptor.dart │ │ └── permission_interceptor.dart │ │ ├── pages │ │ ├── home_page.dart │ │ ├── login_page.dart │ │ ├── page_a.dart │ │ └── page_b.dart │ │ └── user.dart └── pubspec.yaml ├── ff_annotation_route_workspace.iml ├── lib ├── ff_annotation_route.dart └── src │ ├── arg │ ├── arg.dart │ ├── arg_parser.dart │ ├── args.dart │ ├── argument_names.dart │ ├── arguments_case_sensitive.dart │ ├── const_ignore.dart │ ├── exclude_packages.dart │ ├── fast_mode.dart │ ├── g_suffix.dart │ ├── generate_file_import.dart │ ├── generate_file_import_packages.dart │ ├── git.dart │ ├── help.dart │ ├── name.dart │ ├── name_case_sensitive.dart │ ├── null_safety.dart │ ├── output.dart │ ├── output_template.dart │ ├── package.dart │ ├── path.dart │ ├── routes_file_output.dart │ ├── save.dart │ └── super_arguments.dart │ ├── file_info.dart │ ├── route_generator │ ├── fast_route_generator.dart │ ├── route_generator.dart │ └── route_generator_base.dart │ ├── route_info │ ├── fast_route_info.dart │ ├── route_info.dart │ └── route_info_base.dart │ ├── routes_file_generator.dart │ ├── template.dart │ └── utils │ ├── camel_under_score_converter.dart │ ├── convert.dart │ ├── dart_type_auto_import.dart │ ├── display_string_builder.dart │ ├── ff_route.dart │ ├── format.dart │ ├── git_package_handler.dart │ ├── process.dart │ └── route_interceptor.dart ├── melos.yaml ├── pubspec.yaml └── test └── utils_test.dart /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/pub_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.github/workflows/pub_publish.yml -------------------------------------------------------------------------------- /.github/workflows/runnable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.github/workflows/runnable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/Generate all examples.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.run/Generate all examples.run.xml -------------------------------------------------------------------------------- /.run/generate example.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.run/generate example.run.xml -------------------------------------------------------------------------------- /.run/generate example1.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.run/generate example1.run.xml -------------------------------------------------------------------------------- /.run/generate example_fast_mode.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.run/generate example_fast_mode.run.xml -------------------------------------------------------------------------------- /.run/generate example_getx.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.run/generate example_getx.run.xml -------------------------------------------------------------------------------- /.run/generate example_route_extension.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/.run/generate example_route_extension.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zmtzawqlp @AlexV525 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/README-ZH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/ff_annotation_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/bin/ff_annotation_route.dart -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/ff_annotation_route_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/ff_annotation_route_commands -------------------------------------------------------------------------------- /example/lib/example_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/example_route.dart -------------------------------------------------------------------------------- /example/lib/example_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/example_routes.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/src/model/test_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/model/test_model.dart -------------------------------------------------------------------------------- /example/lib/src/model/test_model1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/model/test_model1.dart -------------------------------------------------------------------------------- /example/lib/src/model/test_model2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/model/test_model2.dart -------------------------------------------------------------------------------- /example/lib/src/pages/complex/test_page_d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/complex/test_page_d.dart -------------------------------------------------------------------------------- /example/lib/src/pages/complex/test_page_e.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/complex/test_page_e.dart -------------------------------------------------------------------------------- /example/lib/src/pages/complex/test_page_f.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/complex/test_page_f.dart -------------------------------------------------------------------------------- /example/lib/src/pages/func/func.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/func/func.dart -------------------------------------------------------------------------------- /example/lib/src/pages/func/func.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/func/func.g.dart -------------------------------------------------------------------------------- /example/lib/src/pages/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/main_page.dart -------------------------------------------------------------------------------- /example/lib/src/pages/simple/test_page_a.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/simple/test_page_a.dart -------------------------------------------------------------------------------- /example/lib/src/pages/simple/test_page_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/simple/test_page_b.dart -------------------------------------------------------------------------------- /example/lib/src/pages/simple/test_page_c.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/simple/test_page_c.dart -------------------------------------------------------------------------------- /example/lib/src/pages/simple/test_page_c_copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/simple/test_page_c_copy.dart -------------------------------------------------------------------------------- /example/lib/src/pages/simple/test_page_c_copy_copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/simple/test_page_c_copy_copy.dart -------------------------------------------------------------------------------- /example/lib/src/pages/super_parameters/test_page_super_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/pages/super_parameters/test_page_super_parameters.dart -------------------------------------------------------------------------------- /example/lib/src/typedef.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/lib/src/typedef.dart -------------------------------------------------------------------------------- /example/module_a/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/.gitignore -------------------------------------------------------------------------------- /example/module_a/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/.metadata -------------------------------------------------------------------------------- /example/module_a/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/CHANGELOG.md -------------------------------------------------------------------------------- /example/module_a/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /example/module_a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/README.md -------------------------------------------------------------------------------- /example/module_a/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/analysis_options.yaml -------------------------------------------------------------------------------- /example/module_a/ff_annotation_route_commands: -------------------------------------------------------------------------------- 1 | --super-arguments --null-safety -n ModuleARoutes --package -s -------------------------------------------------------------------------------- /example/module_a/lib/module_a_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/lib/module_a_route.dart -------------------------------------------------------------------------------- /example/module_a/lib/src/mode/mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/lib/src/mode/mode.dart -------------------------------------------------------------------------------- /example/module_a/lib/src/test_page_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/lib/src/test_page_b.dart -------------------------------------------------------------------------------- /example/module_a/lib/src/test_page_c.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/lib/src/test_page_c.dart -------------------------------------------------------------------------------- /example/module_a/lib/src/test_page_d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/lib/src/test_page_d.dart -------------------------------------------------------------------------------- /example/module_a/lib/src/test_page_f.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/lib/src/test_page_f.dart -------------------------------------------------------------------------------- /example/module_a/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_a/pubspec.yaml -------------------------------------------------------------------------------- /example/module_b/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_b/.gitignore -------------------------------------------------------------------------------- /example/module_b/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_b/.metadata -------------------------------------------------------------------------------- /example/module_b/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /example/module_b/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /example/module_b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_b/README.md -------------------------------------------------------------------------------- /example/module_b/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_b/analysis_options.yaml -------------------------------------------------------------------------------- /example/module_b/lib/module_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_b/lib/module_b.dart -------------------------------------------------------------------------------- /example/module_b/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/module_b/pubspec.yaml -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/.gitignore -------------------------------------------------------------------------------- /example1/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/.metadata -------------------------------------------------------------------------------- /example1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/README.md -------------------------------------------------------------------------------- /example1/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/analysis_options.yaml -------------------------------------------------------------------------------- /example1/ff_annotation_route_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/ff_annotation_route_commands -------------------------------------------------------------------------------- /example1/lib/example1_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/example1_route.dart -------------------------------------------------------------------------------- /example1/lib/example1_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/example1_routes.dart -------------------------------------------------------------------------------- /example1/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/main.dart -------------------------------------------------------------------------------- /example1/lib/nested_router_demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/nested_router_demo.dart -------------------------------------------------------------------------------- /example1/lib/simple_demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/simple_demo.dart -------------------------------------------------------------------------------- /example1/lib/src/model/test_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/model/test_model.dart -------------------------------------------------------------------------------- /example1/lib/src/model/test_model1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/model/test_model1.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/complex/test_page_d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/complex/test_page_d.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/complex/test_page_e.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/complex/test_page_e.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/complex/test_page_f.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/complex/test_page_f.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/main_page.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/simple/test_page_a.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/simple/test_page_a.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/simple/test_page_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/simple/test_page_b.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/simple/test_page_c.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/simple/test_page_c.dart -------------------------------------------------------------------------------- /example1/lib/src/pages/simple/test_page_g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/lib/src/pages/simple/test_page_g.dart -------------------------------------------------------------------------------- /example1/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/pubspec.yaml -------------------------------------------------------------------------------- /example1/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/web/favicon.png -------------------------------------------------------------------------------- /example1/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example1/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example1/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/web/index.html -------------------------------------------------------------------------------- /example1/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example1/web/manifest.json -------------------------------------------------------------------------------- /example_fast_mode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/.gitignore -------------------------------------------------------------------------------- /example_fast_mode/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/.metadata -------------------------------------------------------------------------------- /example_fast_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/README.md -------------------------------------------------------------------------------- /example_fast_mode/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/analysis_options.yaml -------------------------------------------------------------------------------- /example_fast_mode/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/.gitignore -------------------------------------------------------------------------------- /example_fast_mode/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/build.gradle -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/kotlin/com/example/example_fast_mode/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/kotlin/com/example/example_fast_mode/MainActivity.kt -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example_fast_mode/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example_fast_mode/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/build.gradle -------------------------------------------------------------------------------- /example_fast_mode/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/gradle.properties -------------------------------------------------------------------------------- /example_fast_mode/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example_fast_mode/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/android/settings.gradle -------------------------------------------------------------------------------- /example_fast_mode/ff_annotation_route_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ff_annotation_route_commands -------------------------------------------------------------------------------- /example_fast_mode/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/.gitignore -------------------------------------------------------------------------------- /example_fast_mode/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example_fast_mode/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example_fast_mode/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example_fast_mode/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Podfile -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example_fast_mode/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example_fast_mode/lib/example_fast_mode_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/example_fast_mode_route.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/example_fast_mode_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/example_fast_mode_routes.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/main.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/model/test_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/model/test_model.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/model/test_model1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/model/test_model1.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/complex/test_page_d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/complex/test_page_d.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/complex/test_page_e.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/complex/test_page_e.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/func/func.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/func/func.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/func/func.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/func/func.g.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/main_page.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/simple/test_page_a.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/simple/test_page_a.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/simple/test_page_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/simple/test_page_b.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/simple/test_page_c.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/simple/test_page_c.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/simple/test_page_c_copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/simple/test_page_c_copy.dart -------------------------------------------------------------------------------- /example_fast_mode/lib/src/pages/simple/test_page_c_copy_copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/lib/src/pages/simple/test_page_c_copy_copy.dart -------------------------------------------------------------------------------- /example_fast_mode/module_a/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/.gitignore -------------------------------------------------------------------------------- /example_fast_mode/module_a/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/.metadata -------------------------------------------------------------------------------- /example_fast_mode/module_a/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/CHANGELOG.md -------------------------------------------------------------------------------- /example_fast_mode/module_a/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /example_fast_mode/module_a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/README.md -------------------------------------------------------------------------------- /example_fast_mode/module_a/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/analysis_options.yaml -------------------------------------------------------------------------------- /example_fast_mode/module_a/ff_annotation_route_commands: -------------------------------------------------------------------------------- 1 | --super-arguments --null-safety -n ModuleARoutes --package -s -------------------------------------------------------------------------------- /example_fast_mode/module_a/lib/module_a_fast_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/lib/module_a_fast_route.dart -------------------------------------------------------------------------------- /example_fast_mode/module_a/lib/src/test_page_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/lib/src/test_page_b.dart -------------------------------------------------------------------------------- /example_fast_mode/module_a/lib/src/test_page_c.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/lib/src/test_page_c.dart -------------------------------------------------------------------------------- /example_fast_mode/module_a/lib/src/test_page_d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/lib/src/test_page_d.dart -------------------------------------------------------------------------------- /example_fast_mode/module_a/lib/src/test_page_f.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/lib/src/test_page_f.dart -------------------------------------------------------------------------------- /example_fast_mode/module_a/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/module_a/pubspec.yaml -------------------------------------------------------------------------------- /example_fast_mode/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_fast_mode/pubspec.yaml -------------------------------------------------------------------------------- /example_getx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/.gitignore -------------------------------------------------------------------------------- /example_getx/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/.metadata -------------------------------------------------------------------------------- /example_getx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/README.md -------------------------------------------------------------------------------- /example_getx/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/analysis_options.yaml -------------------------------------------------------------------------------- /example_getx/ff_annotation_route_commands: -------------------------------------------------------------------------------- 1 | --super-arguments --null-safety -s -------------------------------------------------------------------------------- /example_getx/lib/example_getx_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/example_getx_route.dart -------------------------------------------------------------------------------- /example_getx/lib/example_getx_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/example_getx_routes.dart -------------------------------------------------------------------------------- /example_getx/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/main.dart -------------------------------------------------------------------------------- /example_getx/lib/src/bindings/bindings1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/bindings/bindings1.dart -------------------------------------------------------------------------------- /example_getx/lib/src/controller/controller1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/controller/controller1.dart -------------------------------------------------------------------------------- /example_getx/lib/src/controller/controller2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/controller/controller2.dart -------------------------------------------------------------------------------- /example_getx/lib/src/pages/bindings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/pages/bindings_page.dart -------------------------------------------------------------------------------- /example_getx/lib/src/pages/controller_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/pages/controller_page.dart -------------------------------------------------------------------------------- /example_getx/lib/src/pages/counter_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/pages/counter_page.dart -------------------------------------------------------------------------------- /example_getx/lib/src/pages/item_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/pages/item_page.dart -------------------------------------------------------------------------------- /example_getx/lib/src/pages/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/lib/src/pages/main_page.dart -------------------------------------------------------------------------------- /example_getx/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_getx/pubspec.yaml -------------------------------------------------------------------------------- /example_go_router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/.gitignore -------------------------------------------------------------------------------- /example_go_router/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/.metadata -------------------------------------------------------------------------------- /example_go_router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/README.md -------------------------------------------------------------------------------- /example_go_router/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/analysis_options.yaml -------------------------------------------------------------------------------- /example_go_router/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/.gitignore -------------------------------------------------------------------------------- /example_go_router/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/build.gradle.kts -------------------------------------------------------------------------------- /example_go_router/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/kotlin/com/example/example_go_router/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/kotlin/com/example/example_go_router/MainActivity.kt -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example_go_router/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example_go_router/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example_go_router/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/build.gradle.kts -------------------------------------------------------------------------------- /example_go_router/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/gradle.properties -------------------------------------------------------------------------------- /example_go_router/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example_go_router/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/android/settings.gradle.kts -------------------------------------------------------------------------------- /example_go_router/ff_annotation_route_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ff_annotation_route_commands -------------------------------------------------------------------------------- /example_go_router/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/.gitignore -------------------------------------------------------------------------------- /example_go_router/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example_go_router/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example_go_router/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example_go_router/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example_go_router/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example_go_router/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example_go_router/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example_go_router/lib/example_go_router_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/example_go_router_route.dart -------------------------------------------------------------------------------- /example_go_router/lib/example_go_router_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/example_go_router_routes.dart -------------------------------------------------------------------------------- /example_go_router/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/main.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/pages/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/pages/login_page.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/pages/page_a.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/pages/page_a.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/pages/page_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/pages/page_b.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/pages/shell_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/pages/shell_container.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/pages/tab_home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/pages/tab_home_page.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/pages/tab_profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/pages/tab_profile_page.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/pages/tab_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/pages/tab_settings_page.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/binding.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/external_link_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/external_link_helper.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/go_router_route_lifecycle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/go_router_route_lifecycle.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/interceptors/interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/interceptors/interface.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/interceptors/login_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/interceptors/login_interceptor.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/interceptors/permission_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/interceptors/permission_interceptor.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/navigator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/navigator.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/page_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/page_route.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/router/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/router/router.dart -------------------------------------------------------------------------------- /example_go_router/lib/src/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/lib/src/user.dart -------------------------------------------------------------------------------- /example_go_router/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_go_router/pubspec.yaml -------------------------------------------------------------------------------- /example_route_extension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/.gitignore -------------------------------------------------------------------------------- /example_route_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/README.md -------------------------------------------------------------------------------- /example_route_extension/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/analysis_options.yaml -------------------------------------------------------------------------------- /example_route_extension/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/.gitignore -------------------------------------------------------------------------------- /example_route_extension/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/build.gradle -------------------------------------------------------------------------------- /example_route_extension/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/kotlin/com/example/example_route_extension/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/kotlin/com/example/example_route_extension/MainActivity.kt -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example_route_extension/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example_route_extension/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example_route_extension/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/build.gradle -------------------------------------------------------------------------------- /example_route_extension/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/gradle.properties -------------------------------------------------------------------------------- /example_route_extension/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example_route_extension/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/android/settings.gradle -------------------------------------------------------------------------------- /example_route_extension/ff_annotation_route_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ff_annotation_route_commands -------------------------------------------------------------------------------- /example_route_extension/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/.gitignore -------------------------------------------------------------------------------- /example_route_extension/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example_route_extension/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example_route_extension/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example_route_extension/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Podfile -------------------------------------------------------------------------------- /example_route_extension/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Podfile.lock -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example_route_extension/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example_route_extension/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example_route_extension/lib/example_route_extension_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/example_route_extension_route.dart -------------------------------------------------------------------------------- /example_route_extension/lib/example_route_extension_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/example_route_extension_routes.dart -------------------------------------------------------------------------------- /example_route_extension/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/main.dart -------------------------------------------------------------------------------- /example_route_extension/lib/src/interceptors/login_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/src/interceptors/login_interceptor.dart -------------------------------------------------------------------------------- /example_route_extension/lib/src/interceptors/permission_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/src/interceptors/permission_interceptor.dart -------------------------------------------------------------------------------- /example_route_extension/lib/src/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/src/pages/home_page.dart -------------------------------------------------------------------------------- /example_route_extension/lib/src/pages/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/src/pages/login_page.dart -------------------------------------------------------------------------------- /example_route_extension/lib/src/pages/page_a.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/src/pages/page_a.dart -------------------------------------------------------------------------------- /example_route_extension/lib/src/pages/page_b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/src/pages/page_b.dart -------------------------------------------------------------------------------- /example_route_extension/lib/src/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/lib/src/user.dart -------------------------------------------------------------------------------- /example_route_extension/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/example_route_extension/pubspec.yaml -------------------------------------------------------------------------------- /ff_annotation_route_workspace.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/ff_annotation_route_workspace.iml -------------------------------------------------------------------------------- /lib/ff_annotation_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/ff_annotation_route.dart -------------------------------------------------------------------------------- /lib/src/arg/arg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/arg.dart -------------------------------------------------------------------------------- /lib/src/arg/arg_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/arg_parser.dart -------------------------------------------------------------------------------- /lib/src/arg/args.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/args.dart -------------------------------------------------------------------------------- /lib/src/arg/argument_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/argument_names.dart -------------------------------------------------------------------------------- /lib/src/arg/arguments_case_sensitive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/arguments_case_sensitive.dart -------------------------------------------------------------------------------- /lib/src/arg/const_ignore.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/const_ignore.dart -------------------------------------------------------------------------------- /lib/src/arg/exclude_packages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/exclude_packages.dart -------------------------------------------------------------------------------- /lib/src/arg/fast_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/fast_mode.dart -------------------------------------------------------------------------------- /lib/src/arg/g_suffix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/g_suffix.dart -------------------------------------------------------------------------------- /lib/src/arg/generate_file_import.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/generate_file_import.dart -------------------------------------------------------------------------------- /lib/src/arg/generate_file_import_packages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/generate_file_import_packages.dart -------------------------------------------------------------------------------- /lib/src/arg/git.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/git.dart -------------------------------------------------------------------------------- /lib/src/arg/help.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/help.dart -------------------------------------------------------------------------------- /lib/src/arg/name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/name.dart -------------------------------------------------------------------------------- /lib/src/arg/name_case_sensitive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/name_case_sensitive.dart -------------------------------------------------------------------------------- /lib/src/arg/null_safety.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/null_safety.dart -------------------------------------------------------------------------------- /lib/src/arg/output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/output.dart -------------------------------------------------------------------------------- /lib/src/arg/output_template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/output_template.dart -------------------------------------------------------------------------------- /lib/src/arg/package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/package.dart -------------------------------------------------------------------------------- /lib/src/arg/path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/path.dart -------------------------------------------------------------------------------- /lib/src/arg/routes_file_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/routes_file_output.dart -------------------------------------------------------------------------------- /lib/src/arg/save.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/save.dart -------------------------------------------------------------------------------- /lib/src/arg/super_arguments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/arg/super_arguments.dart -------------------------------------------------------------------------------- /lib/src/file_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/file_info.dart -------------------------------------------------------------------------------- /lib/src/route_generator/fast_route_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/route_generator/fast_route_generator.dart -------------------------------------------------------------------------------- /lib/src/route_generator/route_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/route_generator/route_generator.dart -------------------------------------------------------------------------------- /lib/src/route_generator/route_generator_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/route_generator/route_generator_base.dart -------------------------------------------------------------------------------- /lib/src/route_info/fast_route_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/route_info/fast_route_info.dart -------------------------------------------------------------------------------- /lib/src/route_info/route_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/route_info/route_info.dart -------------------------------------------------------------------------------- /lib/src/route_info/route_info_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/route_info/route_info_base.dart -------------------------------------------------------------------------------- /lib/src/routes_file_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/routes_file_generator.dart -------------------------------------------------------------------------------- /lib/src/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/template.dart -------------------------------------------------------------------------------- /lib/src/utils/camel_under_score_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/camel_under_score_converter.dart -------------------------------------------------------------------------------- /lib/src/utils/convert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/convert.dart -------------------------------------------------------------------------------- /lib/src/utils/dart_type_auto_import.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/dart_type_auto_import.dart -------------------------------------------------------------------------------- /lib/src/utils/display_string_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/display_string_builder.dart -------------------------------------------------------------------------------- /lib/src/utils/ff_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/ff_route.dart -------------------------------------------------------------------------------- /lib/src/utils/format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/format.dart -------------------------------------------------------------------------------- /lib/src/utils/git_package_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/git_package_handler.dart -------------------------------------------------------------------------------- /lib/src/utils/process.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/process.dart -------------------------------------------------------------------------------- /lib/src/utils/route_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/lib/src/utils/route_interceptor.dart -------------------------------------------------------------------------------- /melos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/melos.yaml -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercandies/ff_annotation_route/HEAD/test/utils_test.dart --------------------------------------------------------------------------------