├── Flutter_image.png ├── LICENSE ├── README.md ├── flutter_module ├── .android │ ├── Flutter │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── io │ │ │ └── flutter │ │ │ └── plugins │ │ │ └── GeneratedPluginRegistrant.java │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_module │ │ │ │ └── host │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── include_flutter.groovy │ ├── local.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── .flutter-plugins ├── .flutter-plugins-dependencies ├── .gitignore ├── .ios │ ├── .symlinks │ │ └── plugins │ │ │ ├── flutter_boost │ │ │ ├── path_provider_foundation │ │ │ ├── shared_preferences_foundation │ │ │ └── sqflite_darwin │ ├── Config │ │ ├── Debug.xcconfig │ │ ├── Flutter.xcconfig │ │ └── Release.xcconfig │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Flutter.podspec │ │ ├── FlutterPluginRegistrant │ │ │ ├── Classes │ │ │ │ ├── GeneratedPluginRegistrant.h │ │ │ │ └── GeneratedPluginRegistrant.m │ │ │ └── FlutterPluginRegistrant.podspec │ │ ├── Generated.xcconfig │ │ ├── README.md │ │ ├── flutter_export_environment.sh │ │ └── podhelper.rb │ ├── Podfile.lock │ ├── Pods │ │ ├── Local Podspecs │ │ │ ├── Flutter.podspec.json │ │ │ ├── FlutterPluginRegistrant.podspec.json │ │ │ ├── flutter_boost.podspec.json │ │ │ ├── path_provider_foundation.podspec.json │ │ │ ├── shared_preferences_foundation.podspec.json │ │ │ └── sqflite_darwin.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── xcuserdata │ │ │ │ └── jiangjunhui.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Flutter.xcscheme │ │ │ │ ├── FlutterPluginRegistrant.xcscheme │ │ │ │ ├── Pods-Runner.xcscheme │ │ │ │ ├── flutter_boost.xcscheme │ │ │ │ ├── path_provider_foundation-path_provider_foundation_privacy.xcscheme │ │ │ │ ├── path_provider_foundation.xcscheme │ │ │ │ ├── shared_preferences_foundation-shared_preferences_foundation_privacy.xcscheme │ │ │ │ ├── shared_preferences_foundation.xcscheme │ │ │ │ ├── sqflite_darwin-sqflite_darwin_privacy.xcscheme │ │ │ │ ├── sqflite_darwin.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ └── Target Support Files │ │ │ ├── Flutter │ │ │ ├── Flutter.debug.xcconfig │ │ │ └── Flutter.release.xcconfig │ │ │ ├── FlutterPluginRegistrant │ │ │ ├── FlutterPluginRegistrant-Info.plist │ │ │ ├── FlutterPluginRegistrant-dummy.m │ │ │ ├── FlutterPluginRegistrant-prefix.pch │ │ │ ├── FlutterPluginRegistrant-umbrella.h │ │ │ ├── FlutterPluginRegistrant.debug.xcconfig │ │ │ ├── FlutterPluginRegistrant.modulemap │ │ │ └── FlutterPluginRegistrant.release.xcconfig │ │ │ ├── Pods-Runner │ │ │ ├── Pods-Runner-Info.plist │ │ │ ├── Pods-Runner-acknowledgements.markdown │ │ │ ├── Pods-Runner-acknowledgements.plist │ │ │ ├── Pods-Runner-dummy.m │ │ │ ├── Pods-Runner-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Profile-input-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Profile-output-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-Runner-frameworks.sh │ │ │ ├── Pods-Runner-umbrella.h │ │ │ ├── Pods-Runner.debug.xcconfig │ │ │ ├── Pods-Runner.modulemap │ │ │ ├── Pods-Runner.profile.xcconfig │ │ │ └── Pods-Runner.release.xcconfig │ │ │ ├── flutter_boost │ │ │ ├── flutter_boost-Info.plist │ │ │ ├── flutter_boost-dummy.m │ │ │ ├── flutter_boost-prefix.pch │ │ │ ├── flutter_boost-umbrella.h │ │ │ ├── flutter_boost.debug.xcconfig │ │ │ ├── flutter_boost.modulemap │ │ │ └── flutter_boost.release.xcconfig │ │ │ ├── path_provider_foundation │ │ │ ├── ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist │ │ │ ├── path_provider_foundation-Info.plist │ │ │ ├── path_provider_foundation-dummy.m │ │ │ ├── path_provider_foundation-prefix.pch │ │ │ ├── path_provider_foundation-umbrella.h │ │ │ ├── path_provider_foundation.debug.xcconfig │ │ │ ├── path_provider_foundation.modulemap │ │ │ └── path_provider_foundation.release.xcconfig │ │ │ ├── shared_preferences_foundation │ │ │ ├── ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist │ │ │ ├── shared_preferences_foundation-Info.plist │ │ │ ├── shared_preferences_foundation-dummy.m │ │ │ ├── shared_preferences_foundation-prefix.pch │ │ │ ├── shared_preferences_foundation-umbrella.h │ │ │ ├── shared_preferences_foundation.debug.xcconfig │ │ │ ├── shared_preferences_foundation.modulemap │ │ │ └── shared_preferences_foundation.release.xcconfig │ │ │ └── sqflite_darwin │ │ │ ├── ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist │ │ │ ├── sqflite_darwin-Info.plist │ │ │ ├── sqflite_darwin-dummy.m │ │ │ ├── sqflite_darwin-prefix.pch │ │ │ ├── sqflite_darwin-umbrella.h │ │ │ ├── sqflite_darwin.debug.xcconfig │ │ │ ├── sqflite_darwin.modulemap │ │ │ └── sqflite_darwin.release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── 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 │ │ └── main.m ├── .metadata ├── README.md ├── analysis_options.yaml ├── devtools_options.yaml ├── flutter_module.iml ├── flutter_module_android.iml ├── images │ ├── cat.png │ ├── icon1.png │ ├── icon2.png │ └── pavlova.jpg ├── lib │ ├── app │ │ ├── global │ │ │ ├── channel │ │ │ │ └── app_channel.dart │ │ │ ├── constants │ │ │ │ ├── color_manager.dart │ │ │ │ ├── constant.dart │ │ │ │ └── text_size_manager.dart │ │ │ ├── eventBus │ │ │ │ └── user_loggedIn_event.dart │ │ │ ├── pageRouter │ │ │ │ ├── router_guard.dart │ │ │ │ ├── router_page.dart │ │ │ │ └── router_path.dart │ │ │ └── userInfo │ │ │ │ └── userInfo_manager.dart │ │ ├── pages │ │ │ ├── flutter_boost_demo │ │ │ │ ├── Flutter_D.dart │ │ │ │ ├── Flutter_E.dart │ │ │ │ ├── Flutter_G.dart │ │ │ │ └── flutter_B.dart │ │ │ ├── login │ │ │ │ └── login_page.dart │ │ │ └── test │ │ │ │ ├── cache_image_page.dart │ │ │ │ ├── color_page.dart │ │ │ │ ├── date_page.dart │ │ │ │ ├── db_page.dart │ │ │ │ ├── event_bus_page.dart │ │ │ │ ├── flutter_call_native.dart │ │ │ │ ├── model │ │ │ │ ├── login_model.dart │ │ │ │ ├── login_model.g.dart │ │ │ │ ├── userinfo_model.dart │ │ │ │ └── userinfo_model.g.dart │ │ │ │ ├── network_service_page.dart │ │ │ │ ├── refresh_widget_page.dart │ │ │ │ ├── test1_router_page.dart │ │ │ │ ├── test2_router_page.dart │ │ │ │ ├── test3_touter_page.dart │ │ │ │ ├── test4_router_page.dart │ │ │ │ ├── test_router_page.dart │ │ │ │ └── toast_utils_page.dart │ │ └── root_pages.dart │ ├── core │ │ ├── baseWidget │ │ │ ├── base_controller.dart │ │ │ └── base_widget_page.dart │ │ ├── cacheImage │ │ │ ├── cache_image.dart │ │ │ ├── cache_image_manager.dart │ │ │ └── image_size.dart │ │ ├── crypto │ │ │ └── crypto_utils.dart │ │ ├── data │ │ │ ├── db │ │ │ │ └── database_helper.dart │ │ │ ├── file │ │ │ │ └── file_utils.dart │ │ │ └── sp │ │ │ │ └── sp.dart │ │ ├── dialog │ │ │ ├── custom_bottom_sheet_content.dart │ │ │ ├── custom_dialog.dart │ │ │ └── dialog_queue.dart │ │ ├── eventBus │ │ │ └── event_bus_util.dart │ │ ├── flutter_boost_wrapper │ │ │ ├── core │ │ │ │ ├── boost_bridge.dart │ │ │ │ ├── lifecycle_manager.dart │ │ │ │ └── route_mapper.dart │ │ │ ├── custom_flutter_binding.dart │ │ │ ├── exception │ │ │ │ └── boost_error_handler.dart │ │ │ ├── navigator │ │ │ │ ├── boost_navigator.dart │ │ │ │ └── route_interceptor.dart │ │ │ └── params │ │ │ │ ├── boost_params.dart │ │ │ │ └── global_context.dart │ │ ├── http │ │ │ ├── core │ │ │ │ ├── demo_api.dart │ │ │ │ ├── my_request_options.dart │ │ │ │ └── network_service.dart │ │ │ ├── interceptors │ │ │ │ ├── custom_cache_Interceptor.dart │ │ │ │ ├── custom_log_interceptor.dart │ │ │ │ ├── data_transform_Interceptor.dart │ │ │ │ ├── error_handle_Interceptor.dart │ │ │ │ ├── loading_interceptor.dart │ │ │ │ └── refresh_token_interceptors.dart │ │ │ ├── manager │ │ │ │ ├── custom_HttpClient_adapter.dart │ │ │ │ ├── my_cache_newwork_manager.dart │ │ │ │ └── my_dio_manager.dart │ │ │ └── model │ │ │ │ ├── my_base_list_model.dart │ │ │ │ ├── my_base_list_model.g.dart │ │ │ │ ├── my_base_model.dart │ │ │ │ ├── my_base_model.g.dart │ │ │ │ └── my_response_model.dart │ │ ├── jsonConverter │ │ │ ├── json_type_adapter.dart │ │ │ ├── safe_convert_model.dart │ │ │ ├── safe_dateTime_converter.dart │ │ │ ├── safe_list_converter.dart │ │ │ ├── safe_map_converter.dart │ │ │ └── safe_num_converter.dart │ │ ├── log │ │ │ └── log.dart │ │ ├── refresh │ │ │ └── custom_refresh_widget.dart │ │ ├── router │ │ │ ├── my_router.dart │ │ │ ├── route_aware_state.dart │ │ │ ├── router_observer.dart │ │ │ └── router_url.dart │ │ ├── rxStream │ │ │ └── rxStream.dart │ │ ├── screenutil │ │ │ ├── screen_adapter.dart │ │ │ └── screen_extension.dart │ │ ├── toast │ │ │ └── toast_util.dart │ │ ├── utils │ │ │ ├── date_untils.dart │ │ │ ├── debounce │ │ │ │ ├── debounce_textField.dart │ │ │ │ ├── debounce_util.dart │ │ │ │ ├── throttle_button.dart │ │ │ │ └── throttle_util.dart │ │ │ ├── double_extension.dart │ │ │ ├── extension_color.dart │ │ │ ├── extension_list.dart │ │ │ ├── extension_map.dart │ │ │ ├── extension_string.dart │ │ │ ├── handle_error_utils.dart │ │ │ ├── image_extension.dart │ │ │ ├── json_utils.dart │ │ │ ├── logger_utils.dart │ │ │ ├── null_safety_utils.dart │ │ │ ├── object_utils.dart │ │ │ ├── string_utils.dart │ │ │ ├── textfield_extension.dart │ │ │ ├── utils.dart │ │ │ └── widget_extension.dart │ │ └── widgets │ │ │ ├── Unknown_widget.dart │ │ │ └── custom_appBar_widget.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── iosDemo ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ ├── Flutter.podspec.json │ │ ├── FlutterPluginRegistrant.podspec.json │ │ ├── flutter_boost.podspec.json │ │ ├── path_provider_foundation.podspec.json │ │ ├── shared_preferences_foundation.podspec.json │ │ └── sqflite_darwin.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── jiangjunhui.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Flutter.xcscheme │ │ │ ├── FlutterPluginRegistrant.xcscheme │ │ │ ├── Pods-iosDemo.xcscheme │ │ │ ├── flutter_boost.xcscheme │ │ │ ├── path_provider_foundation-path_provider_foundation_privacy.xcscheme │ │ │ ├── path_provider_foundation.xcscheme │ │ │ ├── shared_preferences_foundation-shared_preferences_foundation_privacy.xcscheme │ │ │ ├── shared_preferences_foundation.xcscheme │ │ │ ├── sqflite_darwin-sqflite_darwin_privacy.xcscheme │ │ │ ├── sqflite_darwin.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── Flutter │ │ ├── Flutter.debug.xcconfig │ │ └── Flutter.release.xcconfig │ │ ├── FlutterPluginRegistrant │ │ ├── FlutterPluginRegistrant-Info.plist │ │ ├── FlutterPluginRegistrant-dummy.m │ │ ├── FlutterPluginRegistrant-prefix.pch │ │ ├── FlutterPluginRegistrant-umbrella.h │ │ ├── FlutterPluginRegistrant.debug.xcconfig │ │ ├── FlutterPluginRegistrant.modulemap │ │ └── FlutterPluginRegistrant.release.xcconfig │ │ ├── Pods-iosDemo │ │ ├── Pods-iosDemo-Info.plist │ │ ├── Pods-iosDemo-acknowledgements.markdown │ │ ├── Pods-iosDemo-acknowledgements.plist │ │ ├── Pods-iosDemo-dummy.m │ │ ├── Pods-iosDemo-frameworks.sh │ │ ├── Pods-iosDemo-umbrella.h │ │ ├── Pods-iosDemo.debug.xcconfig │ │ ├── Pods-iosDemo.modulemap │ │ └── Pods-iosDemo.release.xcconfig │ │ ├── flutter_boost │ │ ├── flutter_boost-Info.plist │ │ ├── flutter_boost-dummy.m │ │ ├── flutter_boost-prefix.pch │ │ ├── flutter_boost-umbrella.h │ │ ├── flutter_boost.debug.xcconfig │ │ ├── flutter_boost.modulemap │ │ └── flutter_boost.release.xcconfig │ │ ├── path_provider_foundation │ │ ├── ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist │ │ ├── path_provider_foundation-Info.plist │ │ ├── path_provider_foundation-dummy.m │ │ ├── path_provider_foundation-prefix.pch │ │ ├── path_provider_foundation-umbrella.h │ │ ├── path_provider_foundation.debug.xcconfig │ │ ├── path_provider_foundation.modulemap │ │ └── path_provider_foundation.release.xcconfig │ │ ├── shared_preferences_foundation │ │ ├── ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist │ │ ├── shared_preferences_foundation-Info.plist │ │ ├── shared_preferences_foundation-dummy.m │ │ ├── shared_preferences_foundation-prefix.pch │ │ ├── shared_preferences_foundation-umbrella.h │ │ ├── shared_preferences_foundation.debug.xcconfig │ │ ├── shared_preferences_foundation.modulemap │ │ └── shared_preferences_foundation.release.xcconfig │ │ └── sqflite_darwin │ │ ├── ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist │ │ ├── sqflite_darwin-Info.plist │ │ ├── sqflite_darwin-dummy.m │ │ ├── sqflite_darwin-prefix.pch │ │ ├── sqflite_darwin-umbrella.h │ │ ├── sqflite_darwin.debug.xcconfig │ │ ├── sqflite_darwin.modulemap │ │ └── sqflite_darwin.release.xcconfig ├── iosDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── jiangjunhui.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── jiangjunhui.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── iosDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── jiangjunhui.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── iosDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── FlutterEngineManager.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift └── podfile └── my_flutter_demo ├── .flutter-plugins-dependencies ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── build.gradle.kts │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── my_flutter_demo │ │ │ │ └── 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 ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── settings.gradle.kts ├── assets └── json │ └── products.json ├── devtools_options.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib ├── bloc_demo │ ├── Repository │ │ └── product_repository.dart │ ├── bloc │ │ ├── counter │ │ │ ├── counter_bloc.dart │ │ │ ├── counter_event.dart │ │ │ └── counter_state.dart │ │ └── product │ │ │ ├── product_bloc.dart │ │ │ ├── product_event.dart │ │ │ └── product_state.dart │ ├── models │ │ └── product_model.dart │ └── pages │ │ ├── counter_first_bloc_page.dart │ │ └── product_list_page.dart ├── bloc_main.dart ├── main.dart ├── provider_demo │ ├── models │ │ └── goods.dart │ ├── page │ │ ├── first_provider_page.dart │ │ ├── goods_collection_page.dart │ │ └── second_provider_page.dart │ └── viewmodels │ │ ├── auth_model.dart │ │ ├── counter_model.dart │ │ └── goodsList_Provider_model.dart └── provider_demo_main.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc ├── my_application.h └── runner │ ├── CMakeLists.txt │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── test └── 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 /Flutter_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/Flutter_image.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/README.md -------------------------------------------------------------------------------- /flutter_module/.android/Flutter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/Flutter/build.gradle -------------------------------------------------------------------------------- /flutter_module/.android/Flutter/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/Flutter/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_module/.android/Flutter/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/Flutter/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /flutter_module/.android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/app/build.gradle -------------------------------------------------------------------------------- /flutter_module/.android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_module/.android/app/src/main/java/com/example/flutter_module/host/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/app/src/main/java/com/example/flutter_module/host/MainActivity.java -------------------------------------------------------------------------------- /flutter_module/.android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /flutter_module/.android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_module/.android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /flutter_module/.android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/build.gradle -------------------------------------------------------------------------------- /flutter_module/.android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/gradle.properties -------------------------------------------------------------------------------- /flutter_module/.android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /flutter_module/.android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /flutter_module/.android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/gradlew -------------------------------------------------------------------------------- /flutter_module/.android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/gradlew.bat -------------------------------------------------------------------------------- /flutter_module/.android/include_flutter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/include_flutter.groovy -------------------------------------------------------------------------------- /flutter_module/.android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/local.properties -------------------------------------------------------------------------------- /flutter_module/.android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/settings.gradle -------------------------------------------------------------------------------- /flutter_module/.android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_module/.flutter-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.flutter-plugins -------------------------------------------------------------------------------- /flutter_module/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /flutter_module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.gitignore -------------------------------------------------------------------------------- /flutter_module/.ios/.symlinks/plugins/flutter_boost: -------------------------------------------------------------------------------- 1 | /Users/jiangjunhui/.pub-cache/git/flutter_boost-6df80cc1ea425cde1bac7d0265407977221061df/ -------------------------------------------------------------------------------- /flutter_module/.ios/.symlinks/plugins/path_provider_foundation: -------------------------------------------------------------------------------- 1 | /Users/jiangjunhui/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/ -------------------------------------------------------------------------------- /flutter_module/.ios/.symlinks/plugins/shared_preferences_foundation: -------------------------------------------------------------------------------- 1 | /Users/jiangjunhui/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.4/ -------------------------------------------------------------------------------- /flutter_module/.ios/.symlinks/plugins/sqflite_darwin: -------------------------------------------------------------------------------- 1 | /Users/jiangjunhui/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.1+1/ -------------------------------------------------------------------------------- /flutter_module/.ios/Config/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Config/Debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Config/Flutter.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Flutter/Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter_module/.ios/Config/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Config/Release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/Flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/Flutter.podspec -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/FlutterPluginRegistrant/Classes/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/FlutterPluginRegistrant/Classes/GeneratedPluginRegistrant.h -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/FlutterPluginRegistrant/Classes/GeneratedPluginRegistrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/FlutterPluginRegistrant/Classes/GeneratedPluginRegistrant.m -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/FlutterPluginRegistrant/FlutterPluginRegistrant.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/FlutterPluginRegistrant/FlutterPluginRegistrant.podspec -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/Generated.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/Generated.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/README.md -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /flutter_module/.ios/Flutter/podhelper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Flutter/podhelper.rb -------------------------------------------------------------------------------- /flutter_module/.ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Podfile.lock -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Local Podspecs/Flutter.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Local Podspecs/Flutter.podspec.json -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Local Podspecs/flutter_boost.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Local Podspecs/flutter_boost.podspec.json -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Local Podspecs/path_provider_foundation.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Local Podspecs/path_provider_foundation.podspec.json -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Local Podspecs/shared_preferences_foundation.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Local Podspecs/shared_preferences_foundation.podspec.json -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Local Podspecs/sqflite_darwin.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Local Podspecs/sqflite_darwin.podspec.json -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Flutter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Flutter.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Pods-Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Pods-Runner.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/flutter_boost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/flutter_boost.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation-path_provider_foundation_privacy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation-path_provider_foundation_privacy.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation-shared_preferences_foundation_privacy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation-shared_preferences_foundation_privacy.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin-sqflite_darwin_privacy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin-sqflite_darwin_privacy.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Flutter/Flutter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Flutter/Flutter.release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.markdown -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-input-files.xcfilelist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Profile-output-files.xcfilelist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-dummy.m -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-prefix.pch -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost-umbrella.h -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost.debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost.modulemap -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/flutter_boost/flutter_boost.release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-dummy.m -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.modulemap -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-dummy.m -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-umbrella.h -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-dummy.m -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-prefix.pch -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-umbrella.h -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.debug.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.modulemap -------------------------------------------------------------------------------- /flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.release.xcconfig -------------------------------------------------------------------------------- /flutter_module/.ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /flutter_module/.ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /flutter_module/.ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /flutter_module/.ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /flutter_module/.ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/Info.plist -------------------------------------------------------------------------------- /flutter_module/.ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.ios/Runner/main.m -------------------------------------------------------------------------------- /flutter_module/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/.metadata -------------------------------------------------------------------------------- /flutter_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/README.md -------------------------------------------------------------------------------- /flutter_module/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/analysis_options.yaml -------------------------------------------------------------------------------- /flutter_module/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/devtools_options.yaml -------------------------------------------------------------------------------- /flutter_module/flutter_module.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/flutter_module.iml -------------------------------------------------------------------------------- /flutter_module/flutter_module_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/flutter_module_android.iml -------------------------------------------------------------------------------- /flutter_module/images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/images/cat.png -------------------------------------------------------------------------------- /flutter_module/images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/images/icon1.png -------------------------------------------------------------------------------- /flutter_module/images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/images/icon2.png -------------------------------------------------------------------------------- /flutter_module/images/pavlova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/images/pavlova.jpg -------------------------------------------------------------------------------- /flutter_module/lib/app/global/channel/app_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/channel/app_channel.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/constants/color_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/constants/color_manager.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/constants/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/constants/constant.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/constants/text_size_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/constants/text_size_manager.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/eventBus/user_loggedIn_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/eventBus/user_loggedIn_event.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/pageRouter/router_guard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/pageRouter/router_guard.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/pageRouter/router_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/pageRouter/router_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/pageRouter/router_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/pageRouter/router_path.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/global/userInfo/userInfo_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/global/userInfo/userInfo_manager.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/flutter_boost_demo/Flutter_D.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/flutter_boost_demo/Flutter_D.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/flutter_boost_demo/Flutter_E.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/flutter_boost_demo/Flutter_E.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/flutter_boost_demo/Flutter_G.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/flutter_boost_demo/Flutter_G.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/flutter_boost_demo/flutter_B.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/flutter_boost_demo/flutter_B.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/login/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/login/login_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/cache_image_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/cache_image_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/color_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/color_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/date_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/date_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/db_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/db_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/event_bus_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/event_bus_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/flutter_call_native.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/flutter_call_native.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/model/login_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/model/login_model.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/model/login_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/model/login_model.g.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/model/userinfo_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/model/userinfo_model.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/model/userinfo_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/model/userinfo_model.g.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/network_service_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/network_service_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/refresh_widget_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/refresh_widget_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/test1_router_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/test1_router_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/test2_router_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/test2_router_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/test3_touter_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/test3_touter_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/test4_router_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/test4_router_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/test_router_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/test_router_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/pages/test/toast_utils_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/pages/test/toast_utils_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/app/root_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/app/root_pages.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/baseWidget/base_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/baseWidget/base_controller.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/baseWidget/base_widget_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/baseWidget/base_widget_page.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/cacheImage/cache_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/cacheImage/cache_image.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/cacheImage/cache_image_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/cacheImage/cache_image_manager.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/cacheImage/image_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/cacheImage/image_size.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/crypto/crypto_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/crypto/crypto_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/data/db/database_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/data/db/database_helper.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/data/file/file_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/data/file/file_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/data/sp/sp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/data/sp/sp.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/dialog/custom_bottom_sheet_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/dialog/custom_bottom_sheet_content.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/dialog/custom_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/dialog/custom_dialog.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/dialog/dialog_queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/dialog/dialog_queue.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/eventBus/event_bus_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/eventBus/event_bus_util.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/core/boost_bridge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/core/boost_bridge.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/core/lifecycle_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/core/lifecycle_manager.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/core/route_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/core/route_mapper.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/custom_flutter_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/custom_flutter_binding.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/exception/boost_error_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/exception/boost_error_handler.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/navigator/boost_navigator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/navigator/boost_navigator.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/navigator/route_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/navigator/route_interceptor.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/params/boost_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/params/boost_params.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/flutter_boost_wrapper/params/global_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/flutter_boost_wrapper/params/global_context.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/core/demo_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/core/demo_api.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/core/my_request_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/core/my_request_options.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/core/network_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/core/network_service.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/interceptors/custom_cache_Interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/interceptors/custom_cache_Interceptor.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/interceptors/custom_log_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/interceptors/custom_log_interceptor.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/interceptors/data_transform_Interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/interceptors/data_transform_Interceptor.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/interceptors/error_handle_Interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/interceptors/error_handle_Interceptor.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/interceptors/loading_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/interceptors/loading_interceptor.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/interceptors/refresh_token_interceptors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/interceptors/refresh_token_interceptors.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/manager/custom_HttpClient_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/manager/custom_HttpClient_adapter.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/manager/my_cache_newwork_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/manager/my_cache_newwork_manager.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/manager/my_dio_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/manager/my_dio_manager.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/model/my_base_list_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/model/my_base_list_model.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/model/my_base_list_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/model/my_base_list_model.g.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/model/my_base_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/model/my_base_model.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/model/my_base_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/model/my_base_model.g.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/http/model/my_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/http/model/my_response_model.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/jsonConverter/json_type_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/jsonConverter/json_type_adapter.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/jsonConverter/safe_convert_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/jsonConverter/safe_convert_model.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/jsonConverter/safe_dateTime_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/jsonConverter/safe_dateTime_converter.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/jsonConverter/safe_list_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/jsonConverter/safe_list_converter.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/jsonConverter/safe_map_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/jsonConverter/safe_map_converter.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/jsonConverter/safe_num_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/jsonConverter/safe_num_converter.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/log/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/log/log.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/refresh/custom_refresh_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/refresh/custom_refresh_widget.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/router/my_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/router/my_router.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/router/route_aware_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/router/route_aware_state.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/router/router_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/router/router_observer.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/router/router_url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/router/router_url.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/rxStream/rxStream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/rxStream/rxStream.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/screenutil/screen_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/screenutil/screen_adapter.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/screenutil/screen_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/screenutil/screen_extension.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/toast/toast_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/toast/toast_util.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/date_untils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/date_untils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/debounce/debounce_textField.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/debounce/debounce_textField.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/debounce/debounce_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/debounce/debounce_util.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/debounce/throttle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/debounce/throttle_button.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/debounce/throttle_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/debounce/throttle_util.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/double_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/double_extension.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/extension_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/extension_color.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/extension_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/extension_list.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/extension_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/extension_map.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/extension_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/extension_string.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/handle_error_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/handle_error_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/image_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/image_extension.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/json_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/json_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/logger_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/logger_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/null_safety_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/null_safety_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/object_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/object_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/string_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/string_utils.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/textfield_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/textfield_extension.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/utils.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flutter_module/lib/core/utils/widget_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/utils/widget_extension.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/widgets/Unknown_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/widgets/Unknown_widget.dart -------------------------------------------------------------------------------- /flutter_module/lib/core/widgets/custom_appBar_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/core/widgets/custom_appBar_widget.dart -------------------------------------------------------------------------------- /flutter_module/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/lib/main.dart -------------------------------------------------------------------------------- /flutter_module/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/pubspec.lock -------------------------------------------------------------------------------- /flutter_module/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/pubspec.yaml -------------------------------------------------------------------------------- /flutter_module/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/flutter_module/test/widget_test.dart -------------------------------------------------------------------------------- /iosDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Podfile.lock -------------------------------------------------------------------------------- /iosDemo/Pods/Local Podspecs/Flutter.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Local Podspecs/Flutter.podspec.json -------------------------------------------------------------------------------- /iosDemo/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json -------------------------------------------------------------------------------- /iosDemo/Pods/Local Podspecs/flutter_boost.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Local Podspecs/flutter_boost.podspec.json -------------------------------------------------------------------------------- /iosDemo/Pods/Local Podspecs/path_provider_foundation.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Local Podspecs/path_provider_foundation.podspec.json -------------------------------------------------------------------------------- /iosDemo/Pods/Local Podspecs/shared_preferences_foundation.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Local Podspecs/shared_preferences_foundation.podspec.json -------------------------------------------------------------------------------- /iosDemo/Pods/Local Podspecs/sqflite_darwin.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Local Podspecs/sqflite_darwin.podspec.json -------------------------------------------------------------------------------- /iosDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Flutter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Flutter.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Pods-iosDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/Pods-iosDemo.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/flutter_boost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/flutter_boost.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation-path_provider_foundation_privacy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation-path_provider_foundation_privacy.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/path_provider_foundation.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation-shared_preferences_foundation_privacy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation-shared_preferences_foundation_privacy.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/shared_preferences_foundation.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin-sqflite_darwin_privacy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin-sqflite_darwin_privacy.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/sqflite_darwin.xcscheme -------------------------------------------------------------------------------- /iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Pods.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Flutter/Flutter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Flutter/Flutter.release.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-acknowledgements.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-dummy.m -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-frameworks.sh -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo-umbrella.h -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo.debug.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo.modulemap -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/Pods-iosDemo/Pods-iosDemo.release.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-dummy.m -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-prefix.pch -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost-umbrella.h -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost.debug.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost.modulemap -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/flutter_boost/flutter_boost.release.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-dummy.m -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-prefix.pch -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.debug.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.modulemap -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/path_provider_foundation/path_provider_foundation.release.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-dummy.m -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-prefix.pch -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation-umbrella.h -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.debug.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.modulemap -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/shared_preferences_foundation/shared_preferences_foundation.release.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-Info.plist -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-dummy.m -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-prefix.pch -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin-umbrella.h -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.debug.xcconfig -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.modulemap -------------------------------------------------------------------------------- /iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/Pods/Target Support Files/sqflite_darwin/sqflite_darwin.release.xcconfig -------------------------------------------------------------------------------- /iosDemo/iosDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosDemo/iosDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosDemo/iosDemo.xcodeproj/project.xcworkspace/xcuserdata/jiangjunhui.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo.xcodeproj/project.xcworkspace/xcuserdata/jiangjunhui.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iosDemo/iosDemo.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo.xcodeproj/xcuserdata/jiangjunhui.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iosDemo/iosDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosDemo/iosDemo.xcworkspace/xcuserdata/jiangjunhui.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo.xcworkspace/xcuserdata/jiangjunhui.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iosDemo/iosDemo.xcworkspace/xcuserdata/jiangjunhui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo.xcworkspace/xcuserdata/jiangjunhui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /iosDemo/iosDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/AppDelegate.swift -------------------------------------------------------------------------------- /iosDemo/iosDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosDemo/iosDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosDemo/iosDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosDemo/iosDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iosDemo/iosDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iosDemo/iosDemo/FlutterEngineManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/FlutterEngineManager.swift -------------------------------------------------------------------------------- /iosDemo/iosDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/Info.plist -------------------------------------------------------------------------------- /iosDemo/iosDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /iosDemo/iosDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/iosDemo/ViewController.swift -------------------------------------------------------------------------------- /iosDemo/podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/iosDemo/podfile -------------------------------------------------------------------------------- /my_flutter_demo/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /my_flutter_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/.gitignore -------------------------------------------------------------------------------- /my_flutter_demo/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/.metadata -------------------------------------------------------------------------------- /my_flutter_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/README.md -------------------------------------------------------------------------------- /my_flutter_demo/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/analysis_options.yaml -------------------------------------------------------------------------------- /my_flutter_demo/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/.gitignore -------------------------------------------------------------------------------- /my_flutter_demo/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/build.gradle -------------------------------------------------------------------------------- /my_flutter_demo/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/build.gradle.kts -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/kotlin/com/example/my_flutter_demo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/kotlin/com/example/my_flutter_demo/MainActivity.kt -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /my_flutter_demo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /my_flutter_demo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/build.gradle -------------------------------------------------------------------------------- /my_flutter_demo/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/build.gradle.kts -------------------------------------------------------------------------------- /my_flutter_demo/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/gradle.properties -------------------------------------------------------------------------------- /my_flutter_demo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /my_flutter_demo/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/settings.gradle -------------------------------------------------------------------------------- /my_flutter_demo/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/android/settings.gradle.kts -------------------------------------------------------------------------------- /my_flutter_demo/assets/json/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/assets/json/products.json -------------------------------------------------------------------------------- /my_flutter_demo/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/devtools_options.yaml -------------------------------------------------------------------------------- /my_flutter_demo/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/.gitignore -------------------------------------------------------------------------------- /my_flutter_demo/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /my_flutter_demo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Podfile -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/Runner/Info.plist -------------------------------------------------------------------------------- /my_flutter_demo/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /my_flutter_demo/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/Repository/product_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/Repository/product_repository.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/bloc/counter/counter_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/bloc/counter/counter_bloc.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/bloc/counter/counter_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/bloc/counter/counter_event.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/bloc/counter/counter_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/bloc/counter/counter_state.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/bloc/product/product_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/bloc/product/product_bloc.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/bloc/product/product_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/bloc/product/product_event.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/bloc/product/product_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/bloc/product/product_state.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/models/product_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/models/product_model.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/pages/counter_first_bloc_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/pages/counter_first_bloc_page.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_demo/pages/product_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_demo/pages/product_list_page.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/bloc_main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/bloc_main.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/main.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo/models/goods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo/models/goods.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo/page/first_provider_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo/page/first_provider_page.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo/page/goods_collection_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo/page/goods_collection_page.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo/page/second_provider_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo/page/second_provider_page.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo/viewmodels/auth_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo/viewmodels/auth_model.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo/viewmodels/counter_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo/viewmodels/counter_model.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo/viewmodels/goodsList_Provider_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo/viewmodels/goodsList_Provider_model.dart -------------------------------------------------------------------------------- /my_flutter_demo/lib/provider_demo_main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/lib/provider_demo_main.dart -------------------------------------------------------------------------------- /my_flutter_demo/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /my_flutter_demo/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/CMakeLists.txt -------------------------------------------------------------------------------- /my_flutter_demo/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /my_flutter_demo/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /my_flutter_demo/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /my_flutter_demo/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /my_flutter_demo/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/main.cc -------------------------------------------------------------------------------- /my_flutter_demo/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/my_application.cc -------------------------------------------------------------------------------- /my_flutter_demo/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/my_application.h -------------------------------------------------------------------------------- /my_flutter_demo/linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/runner/CMakeLists.txt -------------------------------------------------------------------------------- /my_flutter_demo/linux/runner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/runner/main.cc -------------------------------------------------------------------------------- /my_flutter_demo/linux/runner/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/runner/my_application.cc -------------------------------------------------------------------------------- /my_flutter_demo/linux/runner/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/linux/runner/my_application.h -------------------------------------------------------------------------------- /my_flutter_demo/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/.gitignore -------------------------------------------------------------------------------- /my_flutter_demo/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /my_flutter_demo/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Podfile -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Info.plist -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /my_flutter_demo/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /my_flutter_demo/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /my_flutter_demo/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/pubspec.lock -------------------------------------------------------------------------------- /my_flutter_demo/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/pubspec.yaml -------------------------------------------------------------------------------- /my_flutter_demo/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/test/widget_test.dart -------------------------------------------------------------------------------- /my_flutter_demo/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/web/favicon.png -------------------------------------------------------------------------------- /my_flutter_demo/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/web/icons/Icon-192.png -------------------------------------------------------------------------------- /my_flutter_demo/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/web/icons/Icon-512.png -------------------------------------------------------------------------------- /my_flutter_demo/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /my_flutter_demo/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /my_flutter_demo/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/web/index.html -------------------------------------------------------------------------------- /my_flutter_demo/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/web/manifest.json -------------------------------------------------------------------------------- /my_flutter_demo/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/.gitignore -------------------------------------------------------------------------------- /my_flutter_demo/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/CMakeLists.txt -------------------------------------------------------------------------------- /my_flutter_demo/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /my_flutter_demo/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /my_flutter_demo/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /my_flutter_demo/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/Runner.rc -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/main.cpp -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/resource.h -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/utils.cpp -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/utils.h -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /my_flutter_demo/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunshineBrother/flutter-tool/HEAD/my_flutter_demo/windows/runner/win32_window.h --------------------------------------------------------------------------------