├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── fx │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ └── logo.svg ├── cli ├── .gitignore ├── CHANGELOG.md ├── README.md ├── analysis_options.yaml ├── bin │ ├── arb │ │ ├── arb_analyzer.dart │ │ ├── batch_compare.dart │ │ ├── compare_keys.dart │ │ ├── detailed_stats.dart │ │ ├── example_usage.dart │ │ └── sync_missing_keys.dart │ └── cli.dart ├── pubspec.lock ├── pubspec.yaml ├── template.zip └── template_source │ ├── .amazonq │ └── rules │ │ └── style.md │ ├── CHANGELOG.md │ ├── README.md │ ├── example │ ├── android │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── lib │ │ ├── fx_app │ │ │ ├── fx_event │ │ │ │ └── fx_event.dart │ │ │ ├── fx_theme.dart │ │ │ └── navigation │ │ │ │ └── fx_navigation.dart │ │ └── main.dart │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart │ ├── gitignore │ ├── lib │ ├── src │ │ ├── bloc │ │ │ └── bloc.dart │ │ ├── repository │ │ │ └── repository.dart │ │ └── view │ │ │ └── view.dart │ └── {{name}}.dart │ ├── pubspec.yaml │ └── test │ └── {{name}}_test.dart ├── 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 ├── main.dart └── src │ ├── fx_gui.dart │ ├── model │ └── app_config.dart │ ├── pages │ └── home_page.dart │ └── starter │ ├── fx_application.dart │ ├── start_repository.dart │ └── view │ ├── error │ └── app_start_error.dart │ └── splash │ ├── Flutter_unit_splash.dart │ └── flutter_unit_text.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── modules ├── flame_ext │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── flame_ext.dart │ │ └── src │ │ │ ├── debug │ │ │ └── hit_box_show.dart │ │ │ ├── exception │ │ │ └── assets.dart │ │ │ ├── loader │ │ │ ├── sprite_sheet_ext.dart │ │ │ └── texture_loader.dart │ │ │ └── widget │ │ │ └── nine_image_widget.dart │ ├── pubspec.yaml │ └── test │ │ └── flame_ext_test.dart ├── fx_ai_chat │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_ai_chat.dart │ │ └── src │ │ │ ├── api.dart │ │ │ └── model │ │ │ ├── ai_chat_input.dart │ │ │ ├── ai_chat_output.dart │ │ │ ├── ai_choice.dart │ │ │ ├── message.dart │ │ │ └── model.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_ai_chat_test.dart ├── fx_boot_starter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── main.dart │ │ └── starter │ │ │ ├── data │ │ │ └── app_state.dart │ │ │ ├── impl │ │ │ ├── app_fix_action.dart │ │ │ ├── app_start_action.dart │ │ │ └── start_repository.dart │ │ │ └── views │ │ │ ├── error_page.dart │ │ │ └── splash_page.dart │ ├── lib │ │ ├── bloc │ │ │ ├── bloc.dart │ │ │ ├── ext.dart │ │ │ ├── starter.dart │ │ │ └── state.dart │ │ ├── data │ │ │ ├── action │ │ │ │ ├── app_fix_action.dart │ │ │ │ └── app_start_action.dart │ │ │ └── repository.dart │ │ ├── fx_boot_starter.dart │ │ └── view │ │ │ ├── app_start_listener.dart │ │ │ └── app_start_scope.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_boot_starter_test.dart ├── fx_dao │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_dao.dart │ │ └── src │ │ │ ├── database │ │ │ ├── db_open_mixin.dart │ │ │ ├── db_store.dart │ │ │ ├── fx_db_store.dart │ │ │ └── has_database.dart │ │ │ ├── model │ │ │ ├── model.dart │ │ │ ├── po.dart │ │ │ └── query_args.dart │ │ │ ├── table │ │ │ ├── dao.dart │ │ │ └── db_table.dart │ │ │ ├── tools │ │ │ ├── snowflake.dart │ │ │ └── tools.dart │ │ │ └── upgrade │ │ │ └── db_migration.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_dao_test.dart ├── fx_dio │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_dio.dart │ │ └── src │ │ │ ├── client │ │ │ ├── client_mixin.dart │ │ │ ├── convertor.dart │ │ │ ├── fx_dio.dart │ │ │ ├── host.dart │ │ │ └── request_mixin.dart │ │ │ ├── code │ │ │ ├── code.dart │ │ │ └── http_code.dart │ │ │ ├── exception │ │ │ ├── exception_handler.dart │ │ │ └── trace.dart │ │ │ ├── interceptor │ │ │ ├── auth_interceptor.dart │ │ │ └── log_interceptor.dart │ │ │ └── model │ │ │ ├── api_auth.dart │ │ │ └── api_ret.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_dio_test.dart ├── fx_env │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_env.dart │ │ └── src │ │ │ ├── app_env │ │ │ ├── app_env.dart │ │ │ └── os.dart │ │ │ └── global.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_env_test.dart ├── fx_framework │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ └── fx_framework.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_framework_test.dart ├── fx_go_router_ext │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_go_router_ext.dart │ │ └── src │ │ │ ├── listener │ │ │ ├── listener.dart │ │ │ └── path.dart │ │ │ ├── menu │ │ │ └── menu_route.dart │ │ │ └── transition │ │ │ ├── fade_page_transitions_builder.dart │ │ │ ├── page_route │ │ │ ├── fade_page_route.dart │ │ │ ├── slide_page_route.dart │ │ │ └── zero_page_route.dart │ │ │ ├── size_clip_transition.dart │ │ │ ├── slide_transition │ │ │ ├── cupertino_back_gesture_detector.dart │ │ │ └── slide_page_transition_builder.dart │ │ │ └── transition.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_go_router_ext_test.dart ├── fx_platform_adapter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_platform_adapter.dart │ │ └── src │ │ │ ├── bloc │ │ │ └── window_size_adapter.dart │ │ │ ├── data │ │ │ └── global.dart │ │ │ └── view │ │ │ ├── drag_to_move_wrapper.dart │ │ │ ├── platform_view_adapter.dart │ │ │ └── window_buttons.dart │ ├── pubspec.yaml │ └── test │ │ └── platform_adapter_test.dart ├── fx_retry │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── doc │ │ ├── api_reference.md │ │ ├── design.md │ │ ├── examples.md │ │ └── implementation_guide.md │ ├── lib │ │ ├── fx_retry.dart │ │ └── src │ │ │ ├── conditions │ │ │ ├── exception_condition.dart │ │ │ ├── http_status_condition.dart │ │ │ └── retry_condition.dart │ │ │ ├── core │ │ │ ├── retry_builder.dart │ │ │ └── retry_executor.dart │ │ │ ├── exceptions │ │ │ ├── retry_configuration_exception.dart │ │ │ ├── retry_exhausted_exception.dart │ │ │ └── retry_timeout_exception.dart │ │ │ ├── policies │ │ │ ├── exponential_backoff_policy.dart │ │ │ ├── fixed_delay_policy.dart │ │ │ ├── linear_backoff_policy.dart │ │ │ └── retry_policy.dart │ │ │ └── types │ │ │ └── retry_callback.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_retry_test.dart ├── fx_string │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_string.dart │ │ └── src │ │ │ ├── color.dart │ │ │ ├── number.dart │ │ │ └── string.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_string_test.dart ├── fx_trace │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── fx_trace.dart │ │ └── src │ │ │ ├── emitter │ │ │ ├── event_ticker_mixin.dart │ │ │ ├── fx_emitter.dart │ │ │ └── fx_event.dart │ │ │ ├── mixin.dart │ │ │ ├── mixin │ │ │ └── trace_state_mixin.dart │ │ │ ├── model │ │ │ ├── code │ │ │ │ ├── code.dart │ │ │ │ └── http.dart │ │ │ └── model.dart │ │ │ └── trace │ │ │ ├── catch_trace.dart │ │ │ ├── log_trace.dart │ │ │ ├── tip_trace.dart │ │ │ └── trace.dart │ ├── pubspec.yaml │ └── test │ │ └── fx_trace_test.dart ├── module.json └── publish.dart ├── pubspec.lock ├── pubspec.yaml ├── test ├── log.dart ├── model_parser.dart ├── publish.dart ├── upgrade.dart └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/fx/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/kotlin/com/example/fx/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/analysis_options.yaml -------------------------------------------------------------------------------- /cli/bin/arb/arb_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/bin/arb/arb_analyzer.dart -------------------------------------------------------------------------------- /cli/bin/arb/batch_compare.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/bin/arb/batch_compare.dart -------------------------------------------------------------------------------- /cli/bin/arb/compare_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/bin/arb/compare_keys.dart -------------------------------------------------------------------------------- /cli/bin/arb/detailed_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/bin/arb/detailed_stats.dart -------------------------------------------------------------------------------- /cli/bin/arb/example_usage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/bin/arb/example_usage.dart -------------------------------------------------------------------------------- /cli/bin/arb/sync_missing_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/bin/arb/sync_missing_keys.dart -------------------------------------------------------------------------------- /cli/bin/cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/bin/cli.dart -------------------------------------------------------------------------------- /cli/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/pubspec.lock -------------------------------------------------------------------------------- /cli/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/pubspec.yaml -------------------------------------------------------------------------------- /cli/template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template.zip -------------------------------------------------------------------------------- /cli/template_source/.amazonq/rules/style.md: -------------------------------------------------------------------------------- 1 | 接口数据对应的实体类数字使用 num 类型 -------------------------------------------------------------------------------- /cli/template_source/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * Initial release -------------------------------------------------------------------------------- /cli/template_source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/README.md -------------------------------------------------------------------------------- /cli/template_source/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /cli/template_source/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/android/settings.gradle -------------------------------------------------------------------------------- /cli/template_source/example/lib/fx_app/fx_event/fx_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/lib/fx_app/fx_event/fx_event.dart -------------------------------------------------------------------------------- /cli/template_source/example/lib/fx_app/fx_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/lib/fx_app/fx_theme.dart -------------------------------------------------------------------------------- /cli/template_source/example/lib/fx_app/navigation/fx_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/lib/fx_app/navigation/fx_navigation.dart -------------------------------------------------------------------------------- /cli/template_source/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/lib/main.dart -------------------------------------------------------------------------------- /cli/template_source/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/pubspec.yaml -------------------------------------------------------------------------------- /cli/template_source/example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/example/test/widget_test.dart -------------------------------------------------------------------------------- /cli/template_source/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/gitignore -------------------------------------------------------------------------------- /cli/template_source/lib/src/bloc/bloc.dart: -------------------------------------------------------------------------------- 1 | // TODO Implement this library. -------------------------------------------------------------------------------- /cli/template_source/lib/src/repository/repository.dart: -------------------------------------------------------------------------------- 1 | // TODO Implement this library. -------------------------------------------------------------------------------- /cli/template_source/lib/src/view/view.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/template_source/lib/{{name}}.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/lib/{{name}}.dart -------------------------------------------------------------------------------- /cli/template_source/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/cli/template_source/pubspec.yaml -------------------------------------------------------------------------------- /cli/template_source/test/{{name}}_test.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/fx_gui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/src/fx_gui.dart -------------------------------------------------------------------------------- /lib/src/model/app_config.dart: -------------------------------------------------------------------------------- 1 | class AppConfig{ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /lib/src/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/src/pages/home_page.dart -------------------------------------------------------------------------------- /lib/src/starter/fx_application.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/src/starter/fx_application.dart -------------------------------------------------------------------------------- /lib/src/starter/start_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/src/starter/start_repository.dart -------------------------------------------------------------------------------- /lib/src/starter/view/error/app_start_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/src/starter/view/error/app_start_error.dart -------------------------------------------------------------------------------- /lib/src/starter/view/splash/Flutter_unit_splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/src/starter/view/splash/Flutter_unit_splash.dart -------------------------------------------------------------------------------- /lib/src/starter/view/splash/flutter_unit_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/lib/src/starter/view/splash/flutter_unit_text.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /modules/flame_ext/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/.gitignore -------------------------------------------------------------------------------- /modules/flame_ext/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/.metadata -------------------------------------------------------------------------------- /modules/flame_ext/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /modules/flame_ext/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /modules/flame_ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/README.md -------------------------------------------------------------------------------- /modules/flame_ext/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/analysis_options.yaml -------------------------------------------------------------------------------- /modules/flame_ext/lib/flame_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/lib/flame_ext.dart -------------------------------------------------------------------------------- /modules/flame_ext/lib/src/debug/hit_box_show.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/lib/src/debug/hit_box_show.dart -------------------------------------------------------------------------------- /modules/flame_ext/lib/src/exception/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/lib/src/exception/assets.dart -------------------------------------------------------------------------------- /modules/flame_ext/lib/src/loader/sprite_sheet_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/lib/src/loader/sprite_sheet_ext.dart -------------------------------------------------------------------------------- /modules/flame_ext/lib/src/loader/texture_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/lib/src/loader/texture_loader.dart -------------------------------------------------------------------------------- /modules/flame_ext/lib/src/widget/nine_image_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/lib/src/widget/nine_image_widget.dart -------------------------------------------------------------------------------- /modules/flame_ext/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/pubspec.yaml -------------------------------------------------------------------------------- /modules/flame_ext/test/flame_ext_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/flame_ext/test/flame_ext_test.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/.gitignore -------------------------------------------------------------------------------- /modules/fx_ai_chat/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/.metadata -------------------------------------------------------------------------------- /modules/fx_ai_chat/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /modules/fx_ai_chat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/LICENSE -------------------------------------------------------------------------------- /modules/fx_ai_chat/README.md: -------------------------------------------------------------------------------- 1 | fx_ai_chat -------------------------------------------------------------------------------- /modules/fx_ai_chat/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_ai_chat/lib/fx_ai_chat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/lib/fx_ai_chat.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/lib/src/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/lib/src/api.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/lib/src/model/ai_chat_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/lib/src/model/ai_chat_input.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/lib/src/model/ai_chat_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/lib/src/model/ai_chat_output.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/lib/src/model/ai_choice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/lib/src/model/ai_choice.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/lib/src/model/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/lib/src/model/message.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/lib/src/model/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/lib/src/model/model.dart -------------------------------------------------------------------------------- /modules/fx_ai_chat/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_ai_chat/test/fx_ai_chat_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_ai_chat/test/fx_ai_chat_test.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/.gitignore -------------------------------------------------------------------------------- /modules/fx_boot_starter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/.metadata -------------------------------------------------------------------------------- /modules/fx_boot_starter/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /modules/fx_boot_starter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/LICENSE -------------------------------------------------------------------------------- /modules/fx_boot_starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/README.md -------------------------------------------------------------------------------- /modules/fx_boot_starter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_boot_starter/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/example/main.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/example/starter/data/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/example/starter/data/app_state.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/example/starter/impl/app_fix_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/example/starter/impl/app_fix_action.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/example/starter/impl/app_start_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/example/starter/impl/app_start_action.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/example/starter/impl/start_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/example/starter/impl/start_repository.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/example/starter/views/error_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/example/starter/views/error_page.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/example/starter/views/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/example/starter/views/splash_page.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/bloc/bloc.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/bloc/ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/bloc/ext.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/bloc/starter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/bloc/starter.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/bloc/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/bloc/state.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/data/action/app_fix_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/data/action/app_fix_action.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/data/action/app_start_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/data/action/app_start_action.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/data/repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/data/repository.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/fx_boot_starter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/fx_boot_starter.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/view/app_start_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/view/app_start_listener.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/lib/view/app_start_scope.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/lib/view/app_start_scope.dart -------------------------------------------------------------------------------- /modules/fx_boot_starter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_boot_starter/test/fx_boot_starter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_boot_starter/test/fx_boot_starter_test.dart -------------------------------------------------------------------------------- /modules/fx_dao/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/.gitignore -------------------------------------------------------------------------------- /modules/fx_dao/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/.metadata -------------------------------------------------------------------------------- /modules/fx_dao/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/CHANGELOG.md -------------------------------------------------------------------------------- /modules/fx_dao/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/LICENSE -------------------------------------------------------------------------------- /modules/fx_dao/README.md: -------------------------------------------------------------------------------- 1 | #### FX DAO -------------------------------------------------------------------------------- /modules/fx_dao/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_dao/lib/fx_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/fx_dao.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/database/db_open_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/database/db_open_mixin.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/database/db_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/database/db_store.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/database/fx_db_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/database/fx_db_store.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/database/has_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/database/has_database.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/model/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/model/model.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/model/po.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/model/po.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/model/query_args.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/model/query_args.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/table/dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/table/dao.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/table/db_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/table/db_table.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/tools/snowflake.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/tools/snowflake.dart -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/tools/tools.dart: -------------------------------------------------------------------------------- 1 | export 'snowflake.dart'; -------------------------------------------------------------------------------- /modules/fx_dao/lib/src/upgrade/db_migration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/lib/src/upgrade/db_migration.dart -------------------------------------------------------------------------------- /modules/fx_dao/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_dao/test/fx_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dao/test/fx_dao_test.dart -------------------------------------------------------------------------------- /modules/fx_dio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/.gitignore -------------------------------------------------------------------------------- /modules/fx_dio/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/.metadata -------------------------------------------------------------------------------- /modules/fx_dio/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/CHANGELOG.md -------------------------------------------------------------------------------- /modules/fx_dio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/LICENSE -------------------------------------------------------------------------------- /modules/fx_dio/README.md: -------------------------------------------------------------------------------- 1 | FX_DIO -------------------------------------------------------------------------------- /modules/fx_dio/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_dio/lib/fx_dio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/fx_dio.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/client/client_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/client/client_mixin.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/client/convertor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/client/convertor.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/client/fx_dio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/client/fx_dio.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/client/host.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/client/host.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/client/request_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/client/request_mixin.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/code/code.dart: -------------------------------------------------------------------------------- 1 | mixin Code { 2 | int get code; 3 | } 4 | 5 | 6 | -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/code/http_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/code/http_code.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/exception/exception_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/exception/exception_handler.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/exception/trace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/exception/trace.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/interceptor/auth_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/interceptor/auth_interceptor.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/interceptor/log_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/interceptor/log_interceptor.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/model/api_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/model/api_auth.dart -------------------------------------------------------------------------------- /modules/fx_dio/lib/src/model/api_ret.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/lib/src/model/api_ret.dart -------------------------------------------------------------------------------- /modules/fx_dio/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_dio/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_dio/test/fx_dio_test.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fx_env/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/.gitignore -------------------------------------------------------------------------------- /modules/fx_env/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/.metadata -------------------------------------------------------------------------------- /modules/fx_env/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * Support: [Os/AppEnv] kApp 4 | -------------------------------------------------------------------------------- /modules/fx_env/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/LICENSE -------------------------------------------------------------------------------- /modules/fx_env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/README.md -------------------------------------------------------------------------------- /modules/fx_env/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_env/lib/fx_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/lib/fx_env.dart -------------------------------------------------------------------------------- /modules/fx_env/lib/src/app_env/app_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/lib/src/app_env/app_env.dart -------------------------------------------------------------------------------- /modules/fx_env/lib/src/app_env/os.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/lib/src/app_env/os.dart -------------------------------------------------------------------------------- /modules/fx_env/lib/src/global.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/lib/src/global.dart -------------------------------------------------------------------------------- /modules/fx_env/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_env/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_env/test/fx_env_test.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fx_framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/.gitignore -------------------------------------------------------------------------------- /modules/fx_framework/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/.metadata -------------------------------------------------------------------------------- /modules/fx_framework/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/CHANGELOG.md -------------------------------------------------------------------------------- /modules/fx_framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/LICENSE -------------------------------------------------------------------------------- /modules/fx_framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/README.md -------------------------------------------------------------------------------- /modules/fx_framework/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_framework/lib/fx_framework.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/lib/fx_framework.dart -------------------------------------------------------------------------------- /modules/fx_framework/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_framework/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_framework/test/fx_framework_test.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fx_go_router_ext/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/.gitignore -------------------------------------------------------------------------------- /modules/fx_go_router_ext/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/.metadata -------------------------------------------------------------------------------- /modules/fx_go_router_ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/CHANGELOG.md -------------------------------------------------------------------------------- /modules/fx_go_router_ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/LICENSE -------------------------------------------------------------------------------- /modules/fx_go_router_ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/README.md -------------------------------------------------------------------------------- /modules/fx_go_router_ext/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/fx_go_router_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/fx_go_router_ext.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/listener/listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/listener/listener.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/listener/path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/listener/path.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/menu/menu_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/menu/menu_route.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/fade_page_transitions_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/fade_page_transitions_builder.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/page_route/fade_page_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/page_route/fade_page_route.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/page_route/slide_page_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/page_route/slide_page_route.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/page_route/zero_page_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/page_route/zero_page_route.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/size_clip_transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/size_clip_transition.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/slide_transition/cupertino_back_gesture_detector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/slide_transition/cupertino_back_gesture_detector.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/slide_transition/slide_page_transition_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/slide_transition/slide_page_transition_builder.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/lib/src/transition/transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/lib/src/transition/transition.dart -------------------------------------------------------------------------------- /modules/fx_go_router_ext/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_go_router_ext/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_go_router_ext/test/fx_go_router_ext_test.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fx_platform_adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/.gitignore -------------------------------------------------------------------------------- /modules/fx_platform_adapter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/.metadata -------------------------------------------------------------------------------- /modules/fx_platform_adapter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/CHANGELOG.md -------------------------------------------------------------------------------- /modules/fx_platform_adapter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/LICENSE -------------------------------------------------------------------------------- /modules/fx_platform_adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/README.md -------------------------------------------------------------------------------- /modules/fx_platform_adapter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_platform_adapter/lib/fx_platform_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/lib/fx_platform_adapter.dart -------------------------------------------------------------------------------- /modules/fx_platform_adapter/lib/src/bloc/window_size_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/lib/src/bloc/window_size_adapter.dart -------------------------------------------------------------------------------- /modules/fx_platform_adapter/lib/src/data/global.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/lib/src/data/global.dart -------------------------------------------------------------------------------- /modules/fx_platform_adapter/lib/src/view/drag_to_move_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/lib/src/view/drag_to_move_wrapper.dart -------------------------------------------------------------------------------- /modules/fx_platform_adapter/lib/src/view/platform_view_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/lib/src/view/platform_view_adapter.dart -------------------------------------------------------------------------------- /modules/fx_platform_adapter/lib/src/view/window_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/lib/src/view/window_buttons.dart -------------------------------------------------------------------------------- /modules/fx_platform_adapter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_platform_adapter/test/platform_adapter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_platform_adapter/test/platform_adapter_test.dart -------------------------------------------------------------------------------- /modules/fx_retry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/.gitignore -------------------------------------------------------------------------------- /modules/fx_retry/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/.metadata -------------------------------------------------------------------------------- /modules/fx_retry/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /modules/fx_retry/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /modules/fx_retry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/README.md -------------------------------------------------------------------------------- /modules/fx_retry/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_retry/doc/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/doc/api_reference.md -------------------------------------------------------------------------------- /modules/fx_retry/doc/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/doc/design.md -------------------------------------------------------------------------------- /modules/fx_retry/doc/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/doc/examples.md -------------------------------------------------------------------------------- /modules/fx_retry/doc/implementation_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/doc/implementation_guide.md -------------------------------------------------------------------------------- /modules/fx_retry/lib/fx_retry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/fx_retry.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/conditions/exception_condition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/conditions/exception_condition.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/conditions/http_status_condition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/conditions/http_status_condition.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/conditions/retry_condition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/conditions/retry_condition.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/core/retry_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/core/retry_builder.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/core/retry_executor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/core/retry_executor.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/exceptions/retry_configuration_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/exceptions/retry_configuration_exception.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/exceptions/retry_exhausted_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/exceptions/retry_exhausted_exception.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/exceptions/retry_timeout_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/exceptions/retry_timeout_exception.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/policies/exponential_backoff_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/policies/exponential_backoff_policy.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/policies/fixed_delay_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/policies/fixed_delay_policy.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/policies/linear_backoff_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/policies/linear_backoff_policy.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/policies/retry_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/policies/retry_policy.dart -------------------------------------------------------------------------------- /modules/fx_retry/lib/src/types/retry_callback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/lib/src/types/retry_callback.dart -------------------------------------------------------------------------------- /modules/fx_retry/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_retry/test/fx_retry_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_retry/test/fx_retry_test.dart -------------------------------------------------------------------------------- /modules/fx_string/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/.gitignore -------------------------------------------------------------------------------- /modules/fx_string/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/.metadata -------------------------------------------------------------------------------- /modules/fx_string/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/CHANGELOG.md -------------------------------------------------------------------------------- /modules/fx_string/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/LICENSE -------------------------------------------------------------------------------- /modules/fx_string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/README.md -------------------------------------------------------------------------------- /modules/fx_string/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_string/lib/fx_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/lib/fx_string.dart -------------------------------------------------------------------------------- /modules/fx_string/lib/src/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/lib/src/color.dart -------------------------------------------------------------------------------- /modules/fx_string/lib/src/number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/lib/src/number.dart -------------------------------------------------------------------------------- /modules/fx_string/lib/src/string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/lib/src/string.dart -------------------------------------------------------------------------------- /modules/fx_string/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_string/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_string/test/fx_string_test.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/fx_trace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/.gitignore -------------------------------------------------------------------------------- /modules/fx_trace/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/.metadata -------------------------------------------------------------------------------- /modules/fx_trace/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/CHANGELOG.md -------------------------------------------------------------------------------- /modules/fx_trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/LICENSE -------------------------------------------------------------------------------- /modules/fx_trace/README.md: -------------------------------------------------------------------------------- 1 | # fx_trace 2 | 3 | Part Of Fx Framework -------------------------------------------------------------------------------- /modules/fx_trace/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/analysis_options.yaml -------------------------------------------------------------------------------- /modules/fx_trace/lib/fx_trace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/fx_trace.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/emitter/event_ticker_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/emitter/event_ticker_mixin.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/emitter/fx_emitter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/emitter/fx_emitter.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/emitter/fx_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/emitter/fx_event.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/mixin.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/mixin/trace_state_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/mixin/trace_state_mixin.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/model/code/code.dart: -------------------------------------------------------------------------------- 1 | mixin Code { 2 | int? get value; 3 | } 4 | -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/model/code/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/model/code/http.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/model/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/model/model.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/trace/catch_trace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/trace/catch_trace.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/trace/log_trace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/trace/log_trace.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/trace/tip_trace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/trace/tip_trace.dart -------------------------------------------------------------------------------- /modules/fx_trace/lib/src/trace/trace.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/lib/src/trace/trace.dart -------------------------------------------------------------------------------- /modules/fx_trace/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/pubspec.yaml -------------------------------------------------------------------------------- /modules/fx_trace/test/fx_trace_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/fx_trace/test/fx_trace_test.dart -------------------------------------------------------------------------------- /modules/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/module.json -------------------------------------------------------------------------------- /modules/publish.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/modules/publish.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/test/log.dart -------------------------------------------------------------------------------- /test/model_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/test/model_parser.dart -------------------------------------------------------------------------------- /test/publish.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/test/publish.dart -------------------------------------------------------------------------------- /test/upgrade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/test/upgrade.dart -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TolyFx/fx/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------