├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── ScreenShots ├── 1.PNG ├── 2.PNG ├── 3.PNG ├── 4.PNG ├── 5.PNG ├── 6.PNG ├── 7.PNG ├── 8.PNG ├── 9.PNG └── 框架结构图.drawio ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── getx_study │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── html │ ├── index.html │ └── webToApp.html └── images │ ├── ic_eye.png │ ├── ic_head.jpeg │ ├── launchImage.png │ ├── placeholder.png │ ├── saber.jpg │ ├── saber_logo.jpg │ ├── season_ali_pay.jpg │ ├── upgrade.png │ ├── welcome_1.png │ └── welcome_2.jpg ├── clean_flutter_projects.sh ├── devtools_options.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── PrivacyInfo.xcprivacy ├── 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-1024.png │ │ │ ├── icon-20-ipad.png │ │ │ ├── icon-20@2x-ipad.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29-ipad.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x-ipad.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.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 ├── ios_2024-04-11.txt └── update_privacy_info.py ├── lib ├── account_manager │ └── account_manager.dart ├── app_service │ ├── account_service.dart │ └── theme_service.dart ├── base │ ├── base_controller.dart │ ├── base_refresh_controller.dart │ ├── base_request_controller.dart │ ├── box.dart │ ├── class_name.dart │ ├── get_bind_widget.dart │ ├── get_cupertino_controller.dart │ ├── interface.dart │ ├── pure_get_cupertino_app.dart │ ├── reload_data_mixin.dart │ ├── resign_first_responder.dart │ └── resign_first_view.dart ├── entity │ ├── account_info_entity.dart │ ├── article_info_entity.dart │ ├── banner_entity.dart │ ├── base_entity.dart │ ├── coin_rank_entity.dart │ ├── common_response.dart │ ├── common_response.g.dart │ ├── hot_key_entity.dart │ ├── i_entity.dart │ ├── json_convert_extension.dart │ ├── my_coin_entity.dart │ ├── my_coin_history_entity.dart │ ├── page_entity.dart │ ├── pageable.dart │ └── tab_entity.dart ├── enum │ ├── collect_action_type.dart │ ├── main_tag_type.dart │ ├── my.dart │ ├── response_status.dart │ ├── scroll_view_action_type.dart │ ├── tag_type.dart │ └── theme_type.dart ├── example_app │ ├── example_routes.dart │ ├── get_x_app.dart │ ├── h5_js_channel_app.dart │ ├── rx_dart_app.dart │ ├── state_mixin_example_page.dart │ └── stream_app.dart ├── extension │ ├── future_extension.dart │ ├── get_route_extension.dart │ ├── string_extension.dart │ └── theme_data_extension.dart ├── generated │ ├── assets.dart │ └── json │ │ ├── account_info_entity.g.dart │ │ ├── article_info_entity.g.dart │ │ ├── banner_entity.g.dart │ │ ├── base │ │ ├── json_convert_content.dart │ │ └── json_field.dart │ │ ├── coin_rank_entity.g.dart │ │ ├── hot_key_entity.g.dart │ │ ├── my_coin_entity.g.dart │ │ ├── my_coin_history_entity.g.dart │ │ └── tab_entity.g.dart ├── http_client │ ├── login_client.dart │ ├── login_client.g.dart │ ├── request_client.dart │ └── request_client.g.dart ├── http_util │ ├── api.dart │ ├── http_status.dart │ ├── http_util.dart │ ├── network_activity_plugin.dart │ ├── plugins.dart │ └── request.dart ├── i18n │ └── localized_strings.dart ├── logger │ └── logger.dart ├── main.dart ├── my_app.dart ├── pages │ ├── coin_rank │ │ ├── bindings │ │ │ └── coin_rank_binding.dart │ │ ├── controller │ │ │ └── coin_rank_controller.dart │ │ ├── repository │ │ │ └── coin_rank_repository.dart │ │ └── view │ │ │ └── coin_rank_page.dart │ ├── common │ │ ├── countdown_circle.dart │ │ ├── empty_view.dart │ │ ├── error_view.dart │ │ ├── floating_widget.dart │ │ ├── info_cell.dart │ │ ├── keep_alive_wrapper.dart │ │ ├── loading_view.dart │ │ ├── marquee_label.dart │ │ ├── my_list_view.dart │ │ ├── refresh_header_footer.dart │ │ ├── shimmer.dart │ │ ├── status_view.dart │ │ └── unknown_page.dart │ ├── home │ │ ├── binding │ │ │ ├── home_binding.dart │ │ │ ├── hot_key_binding.dart │ │ │ └── search_result_binding.dart │ │ ├── controller │ │ │ ├── home_controller.dart │ │ │ ├── hot_key_controller.dart │ │ │ └── search_result_controller.dart │ │ ├── repository │ │ │ ├── home_repository.dart │ │ │ ├── hot_key_repository.dart │ │ │ └── search_result_repository.dart │ │ └── view │ │ │ ├── home_page.dart │ │ │ ├── hot_key_page.dart │ │ │ ├── search_result_page.dart │ │ │ └── search_text_field.dart │ ├── launch │ │ ├── splash_page.dart │ │ └── welcome_page.dart │ ├── main │ │ ├── bindings │ │ │ └── main_binding.dart │ │ ├── controller │ │ │ └── main_controller.dart │ │ └── view │ │ │ └── main_page.dart │ ├── my │ │ ├── binding │ │ │ ├── login_binding.dart │ │ │ ├── my_binding.dart │ │ │ ├── my_coin_history_binding.dart │ │ │ ├── my_collect_binding.dart │ │ │ └── register_binding.dart │ │ ├── controller │ │ │ ├── get_user_info_mixin.dart │ │ │ ├── login_controller.dart │ │ │ ├── my_coin_history_controller.dart │ │ │ ├── my_collect_controller.dart │ │ │ ├── my_controller.dart │ │ │ └── register_controller.dart │ │ ├── repository │ │ │ ├── my_coin_history_repository.dart │ │ │ ├── my_collect_repository.dart │ │ │ └── my_repository.dart │ │ └── view │ │ │ ├── login_page.dart │ │ │ ├── my_coin_history_page.dart │ │ │ ├── my_collect_page.dart │ │ │ ├── my_page.dart │ │ │ ├── register_page.dart │ │ │ └── theme_setting_page.dart │ ├── tree │ │ ├── bindings │ │ │ └── tabs_binding.dart │ │ ├── controller │ │ │ ├── tab_list_controller.dart │ │ │ └── tabs_controller.dart │ │ ├── repository │ │ │ ├── tab_list_repository.dart │ │ │ └── tabs_repository.dart │ │ └── view │ │ │ ├── tab_list_page.dart │ │ │ ├── tabs_page.dart │ │ │ ├── tree_cell.dart │ │ │ └── tree_page.dart │ └── web │ │ ├── binding │ │ └── web_binding.dart │ │ ├── controller │ │ └── web_controller.dart │ │ ├── repository │ │ └── web_repository.dart │ │ └── view │ │ └── web_page.dart ├── resource │ └── constant.dart └── routes │ ├── getx_router_observer.dart │ ├── history_router_observer.dart │ ├── middleware │ ├── login_middleware.dart │ └── web_middleware.dart │ └── routes.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── 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 └── 说明.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/1.PNG -------------------------------------------------------------------------------- /ScreenShots/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/2.PNG -------------------------------------------------------------------------------- /ScreenShots/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/3.PNG -------------------------------------------------------------------------------- /ScreenShots/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/4.PNG -------------------------------------------------------------------------------- /ScreenShots/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/5.PNG -------------------------------------------------------------------------------- /ScreenShots/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/6.PNG -------------------------------------------------------------------------------- /ScreenShots/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/7.PNG -------------------------------------------------------------------------------- /ScreenShots/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/8.PNG -------------------------------------------------------------------------------- /ScreenShots/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/9.PNG -------------------------------------------------------------------------------- /ScreenShots/框架结构图.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ScreenShots/框架结构图.drawio -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/getx_study/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/kotlin/com/example/getx_study/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/html/index.html -------------------------------------------------------------------------------- /assets/html/webToApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/html/webToApp.html -------------------------------------------------------------------------------- /assets/images/ic_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/ic_eye.png -------------------------------------------------------------------------------- /assets/images/ic_head.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/ic_head.jpeg -------------------------------------------------------------------------------- /assets/images/launchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/launchImage.png -------------------------------------------------------------------------------- /assets/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/placeholder.png -------------------------------------------------------------------------------- /assets/images/saber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/saber.jpg -------------------------------------------------------------------------------- /assets/images/saber_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/saber_logo.jpg -------------------------------------------------------------------------------- /assets/images/season_ali_pay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/season_ali_pay.jpg -------------------------------------------------------------------------------- /assets/images/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/upgrade.png -------------------------------------------------------------------------------- /assets/images/welcome_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/welcome_1.png -------------------------------------------------------------------------------- /assets/images/welcome_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/assets/images/welcome_2.jpg -------------------------------------------------------------------------------- /clean_flutter_projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/clean_flutter_projects.sh -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/ios_2024-04-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/ios_2024-04-11.txt -------------------------------------------------------------------------------- /ios/update_privacy_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/ios/update_privacy_info.py -------------------------------------------------------------------------------- /lib/account_manager/account_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/account_manager/account_manager.dart -------------------------------------------------------------------------------- /lib/app_service/account_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/app_service/account_service.dart -------------------------------------------------------------------------------- /lib/app_service/theme_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/app_service/theme_service.dart -------------------------------------------------------------------------------- /lib/base/base_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/base_controller.dart -------------------------------------------------------------------------------- /lib/base/base_refresh_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/base_refresh_controller.dart -------------------------------------------------------------------------------- /lib/base/base_request_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/base_request_controller.dart -------------------------------------------------------------------------------- /lib/base/box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/box.dart -------------------------------------------------------------------------------- /lib/base/class_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/class_name.dart -------------------------------------------------------------------------------- /lib/base/get_bind_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/get_bind_widget.dart -------------------------------------------------------------------------------- /lib/base/get_cupertino_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/get_cupertino_controller.dart -------------------------------------------------------------------------------- /lib/base/interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/interface.dart -------------------------------------------------------------------------------- /lib/base/pure_get_cupertino_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/pure_get_cupertino_app.dart -------------------------------------------------------------------------------- /lib/base/reload_data_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/reload_data_mixin.dart -------------------------------------------------------------------------------- /lib/base/resign_first_responder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/resign_first_responder.dart -------------------------------------------------------------------------------- /lib/base/resign_first_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/base/resign_first_view.dart -------------------------------------------------------------------------------- /lib/entity/account_info_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/account_info_entity.dart -------------------------------------------------------------------------------- /lib/entity/article_info_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/article_info_entity.dart -------------------------------------------------------------------------------- /lib/entity/banner_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/banner_entity.dart -------------------------------------------------------------------------------- /lib/entity/base_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/base_entity.dart -------------------------------------------------------------------------------- /lib/entity/coin_rank_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/coin_rank_entity.dart -------------------------------------------------------------------------------- /lib/entity/common_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/common_response.dart -------------------------------------------------------------------------------- /lib/entity/common_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/common_response.g.dart -------------------------------------------------------------------------------- /lib/entity/hot_key_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/hot_key_entity.dart -------------------------------------------------------------------------------- /lib/entity/i_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/i_entity.dart -------------------------------------------------------------------------------- /lib/entity/json_convert_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/json_convert_extension.dart -------------------------------------------------------------------------------- /lib/entity/my_coin_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/my_coin_entity.dart -------------------------------------------------------------------------------- /lib/entity/my_coin_history_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/my_coin_history_entity.dart -------------------------------------------------------------------------------- /lib/entity/page_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/page_entity.dart -------------------------------------------------------------------------------- /lib/entity/pageable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/pageable.dart -------------------------------------------------------------------------------- /lib/entity/tab_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/entity/tab_entity.dart -------------------------------------------------------------------------------- /lib/enum/collect_action_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/enum/collect_action_type.dart -------------------------------------------------------------------------------- /lib/enum/main_tag_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/enum/main_tag_type.dart -------------------------------------------------------------------------------- /lib/enum/my.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/enum/my.dart -------------------------------------------------------------------------------- /lib/enum/response_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/enum/response_status.dart -------------------------------------------------------------------------------- /lib/enum/scroll_view_action_type.dart: -------------------------------------------------------------------------------- 1 | /// 上下拉行为类型 2 | enum ScrollViewActionType { 3 | refresh, 4 | loadMore; 5 | } 6 | -------------------------------------------------------------------------------- /lib/enum/tag_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/enum/tag_type.dart -------------------------------------------------------------------------------- /lib/enum/theme_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/enum/theme_type.dart -------------------------------------------------------------------------------- /lib/example_app/example_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/example_app/example_routes.dart -------------------------------------------------------------------------------- /lib/example_app/get_x_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/example_app/get_x_app.dart -------------------------------------------------------------------------------- /lib/example_app/h5_js_channel_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/example_app/h5_js_channel_app.dart -------------------------------------------------------------------------------- /lib/example_app/rx_dart_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/example_app/rx_dart_app.dart -------------------------------------------------------------------------------- /lib/example_app/state_mixin_example_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/example_app/state_mixin_example_page.dart -------------------------------------------------------------------------------- /lib/example_app/stream_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/example_app/stream_app.dart -------------------------------------------------------------------------------- /lib/extension/future_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/extension/future_extension.dart -------------------------------------------------------------------------------- /lib/extension/get_route_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/extension/get_route_extension.dart -------------------------------------------------------------------------------- /lib/extension/string_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/extension/string_extension.dart -------------------------------------------------------------------------------- /lib/extension/theme_data_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/extension/theme_data_extension.dart -------------------------------------------------------------------------------- /lib/generated/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/assets.dart -------------------------------------------------------------------------------- /lib/generated/json/account_info_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/account_info_entity.g.dart -------------------------------------------------------------------------------- /lib/generated/json/article_info_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/article_info_entity.g.dart -------------------------------------------------------------------------------- /lib/generated/json/banner_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/banner_entity.g.dart -------------------------------------------------------------------------------- /lib/generated/json/base/json_convert_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/base/json_convert_content.dart -------------------------------------------------------------------------------- /lib/generated/json/base/json_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/base/json_field.dart -------------------------------------------------------------------------------- /lib/generated/json/coin_rank_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/coin_rank_entity.g.dart -------------------------------------------------------------------------------- /lib/generated/json/hot_key_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/hot_key_entity.g.dart -------------------------------------------------------------------------------- /lib/generated/json/my_coin_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/my_coin_entity.g.dart -------------------------------------------------------------------------------- /lib/generated/json/my_coin_history_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/my_coin_history_entity.g.dart -------------------------------------------------------------------------------- /lib/generated/json/tab_entity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/generated/json/tab_entity.g.dart -------------------------------------------------------------------------------- /lib/http_client/login_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_client/login_client.dart -------------------------------------------------------------------------------- /lib/http_client/login_client.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_client/login_client.g.dart -------------------------------------------------------------------------------- /lib/http_client/request_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_client/request_client.dart -------------------------------------------------------------------------------- /lib/http_client/request_client.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_client/request_client.g.dart -------------------------------------------------------------------------------- /lib/http_util/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_util/api.dart -------------------------------------------------------------------------------- /lib/http_util/http_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_util/http_status.dart -------------------------------------------------------------------------------- /lib/http_util/http_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_util/http_util.dart -------------------------------------------------------------------------------- /lib/http_util/network_activity_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_util/network_activity_plugin.dart -------------------------------------------------------------------------------- /lib/http_util/plugins.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_util/plugins.dart -------------------------------------------------------------------------------- /lib/http_util/request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/http_util/request.dart -------------------------------------------------------------------------------- /lib/i18n/localized_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/i18n/localized_strings.dart -------------------------------------------------------------------------------- /lib/logger/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/logger/logger.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/my_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/my_app.dart -------------------------------------------------------------------------------- /lib/pages/coin_rank/bindings/coin_rank_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/coin_rank/bindings/coin_rank_binding.dart -------------------------------------------------------------------------------- /lib/pages/coin_rank/controller/coin_rank_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/coin_rank/controller/coin_rank_controller.dart -------------------------------------------------------------------------------- /lib/pages/coin_rank/repository/coin_rank_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/coin_rank/repository/coin_rank_repository.dart -------------------------------------------------------------------------------- /lib/pages/coin_rank/view/coin_rank_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/coin_rank/view/coin_rank_page.dart -------------------------------------------------------------------------------- /lib/pages/common/countdown_circle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/countdown_circle.dart -------------------------------------------------------------------------------- /lib/pages/common/empty_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/empty_view.dart -------------------------------------------------------------------------------- /lib/pages/common/error_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/error_view.dart -------------------------------------------------------------------------------- /lib/pages/common/floating_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/floating_widget.dart -------------------------------------------------------------------------------- /lib/pages/common/info_cell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/info_cell.dart -------------------------------------------------------------------------------- /lib/pages/common/keep_alive_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/keep_alive_wrapper.dart -------------------------------------------------------------------------------- /lib/pages/common/loading_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/loading_view.dart -------------------------------------------------------------------------------- /lib/pages/common/marquee_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/marquee_label.dart -------------------------------------------------------------------------------- /lib/pages/common/my_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/my_list_view.dart -------------------------------------------------------------------------------- /lib/pages/common/refresh_header_footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/refresh_header_footer.dart -------------------------------------------------------------------------------- /lib/pages/common/shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/shimmer.dart -------------------------------------------------------------------------------- /lib/pages/common/status_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/status_view.dart -------------------------------------------------------------------------------- /lib/pages/common/unknown_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/common/unknown_page.dart -------------------------------------------------------------------------------- /lib/pages/home/binding/home_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/binding/home_binding.dart -------------------------------------------------------------------------------- /lib/pages/home/binding/hot_key_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/binding/hot_key_binding.dart -------------------------------------------------------------------------------- /lib/pages/home/binding/search_result_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/binding/search_result_binding.dart -------------------------------------------------------------------------------- /lib/pages/home/controller/home_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/controller/home_controller.dart -------------------------------------------------------------------------------- /lib/pages/home/controller/hot_key_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/controller/hot_key_controller.dart -------------------------------------------------------------------------------- /lib/pages/home/controller/search_result_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/controller/search_result_controller.dart -------------------------------------------------------------------------------- /lib/pages/home/repository/home_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/repository/home_repository.dart -------------------------------------------------------------------------------- /lib/pages/home/repository/hot_key_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/repository/hot_key_repository.dart -------------------------------------------------------------------------------- /lib/pages/home/repository/search_result_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/repository/search_result_repository.dart -------------------------------------------------------------------------------- /lib/pages/home/view/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/view/home_page.dart -------------------------------------------------------------------------------- /lib/pages/home/view/hot_key_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/view/hot_key_page.dart -------------------------------------------------------------------------------- /lib/pages/home/view/search_result_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/view/search_result_page.dart -------------------------------------------------------------------------------- /lib/pages/home/view/search_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/home/view/search_text_field.dart -------------------------------------------------------------------------------- /lib/pages/launch/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/launch/splash_page.dart -------------------------------------------------------------------------------- /lib/pages/launch/welcome_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/launch/welcome_page.dart -------------------------------------------------------------------------------- /lib/pages/main/bindings/main_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/main/bindings/main_binding.dart -------------------------------------------------------------------------------- /lib/pages/main/controller/main_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/main/controller/main_controller.dart -------------------------------------------------------------------------------- /lib/pages/main/view/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/main/view/main_page.dart -------------------------------------------------------------------------------- /lib/pages/my/binding/login_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/binding/login_binding.dart -------------------------------------------------------------------------------- /lib/pages/my/binding/my_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/binding/my_binding.dart -------------------------------------------------------------------------------- /lib/pages/my/binding/my_coin_history_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/binding/my_coin_history_binding.dart -------------------------------------------------------------------------------- /lib/pages/my/binding/my_collect_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/binding/my_collect_binding.dart -------------------------------------------------------------------------------- /lib/pages/my/binding/register_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/binding/register_binding.dart -------------------------------------------------------------------------------- /lib/pages/my/controller/get_user_info_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/controller/get_user_info_mixin.dart -------------------------------------------------------------------------------- /lib/pages/my/controller/login_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/controller/login_controller.dart -------------------------------------------------------------------------------- /lib/pages/my/controller/my_coin_history_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/controller/my_coin_history_controller.dart -------------------------------------------------------------------------------- /lib/pages/my/controller/my_collect_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/controller/my_collect_controller.dart -------------------------------------------------------------------------------- /lib/pages/my/controller/my_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/controller/my_controller.dart -------------------------------------------------------------------------------- /lib/pages/my/controller/register_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/controller/register_controller.dart -------------------------------------------------------------------------------- /lib/pages/my/repository/my_coin_history_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/repository/my_coin_history_repository.dart -------------------------------------------------------------------------------- /lib/pages/my/repository/my_collect_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/repository/my_collect_repository.dart -------------------------------------------------------------------------------- /lib/pages/my/repository/my_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/repository/my_repository.dart -------------------------------------------------------------------------------- /lib/pages/my/view/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/view/login_page.dart -------------------------------------------------------------------------------- /lib/pages/my/view/my_coin_history_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/view/my_coin_history_page.dart -------------------------------------------------------------------------------- /lib/pages/my/view/my_collect_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/view/my_collect_page.dart -------------------------------------------------------------------------------- /lib/pages/my/view/my_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/view/my_page.dart -------------------------------------------------------------------------------- /lib/pages/my/view/register_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/view/register_page.dart -------------------------------------------------------------------------------- /lib/pages/my/view/theme_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/my/view/theme_setting_page.dart -------------------------------------------------------------------------------- /lib/pages/tree/bindings/tabs_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/bindings/tabs_binding.dart -------------------------------------------------------------------------------- /lib/pages/tree/controller/tab_list_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/controller/tab_list_controller.dart -------------------------------------------------------------------------------- /lib/pages/tree/controller/tabs_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/controller/tabs_controller.dart -------------------------------------------------------------------------------- /lib/pages/tree/repository/tab_list_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/repository/tab_list_repository.dart -------------------------------------------------------------------------------- /lib/pages/tree/repository/tabs_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/repository/tabs_repository.dart -------------------------------------------------------------------------------- /lib/pages/tree/view/tab_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/view/tab_list_page.dart -------------------------------------------------------------------------------- /lib/pages/tree/view/tabs_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/view/tabs_page.dart -------------------------------------------------------------------------------- /lib/pages/tree/view/tree_cell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/view/tree_cell.dart -------------------------------------------------------------------------------- /lib/pages/tree/view/tree_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/tree/view/tree_page.dart -------------------------------------------------------------------------------- /lib/pages/web/binding/web_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/web/binding/web_binding.dart -------------------------------------------------------------------------------- /lib/pages/web/controller/web_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/web/controller/web_controller.dart -------------------------------------------------------------------------------- /lib/pages/web/repository/web_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/web/repository/web_repository.dart -------------------------------------------------------------------------------- /lib/pages/web/view/web_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/pages/web/view/web_page.dart -------------------------------------------------------------------------------- /lib/resource/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/resource/constant.dart -------------------------------------------------------------------------------- /lib/routes/getx_router_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/routes/getx_router_observer.dart -------------------------------------------------------------------------------- /lib/routes/history_router_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/routes/history_router_observer.dart -------------------------------------------------------------------------------- /lib/routes/middleware/login_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/routes/middleware/login_middleware.dart -------------------------------------------------------------------------------- /lib/routes/middleware/web_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/routes/middleware/web_middleware.dart -------------------------------------------------------------------------------- /lib/routes/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/lib/routes/routes.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/windows/runner/win32_window.h -------------------------------------------------------------------------------- /说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seasonZhu/GetXStudy/HEAD/说明.md --------------------------------------------------------------------------------