├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── wandroid_flutter │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── 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 │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── settings_aar.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── lib ├── app │ ├── app_page │ │ ├── action.dart │ │ ├── effect.dart │ │ ├── page.dart │ │ ├── reducer.dart │ │ ├── state.dart │ │ └── view.dart │ ├── app_route.dart │ ├── config.dart │ ├── global_constant │ │ ├── global_constant.dart │ │ └── global_theme_style.dart │ ├── global_fish_redux │ │ ├── action.dart │ │ ├── reducer.dart │ │ ├── state.dart │ │ └── store.dart │ └── network │ │ ├── api.dart │ │ ├── common_service.dart │ │ └── http_manager.dart ├── generated │ └── i18n.dart ├── main.dart ├── model │ ├── HomeHeadBannerBean.dart │ ├── HomeHeadBannerBean.g.dart │ ├── HomeInfomationBean.dart │ ├── HomeInfomationBean.g.dart │ ├── UserLoginBean.dart │ └── UserLoginBean.g.dart ├── page │ ├── currency_webpage │ │ ├── action.dart │ │ ├── effect.dart │ │ ├── page.dart │ │ ├── reducer.dart │ │ ├── state.dart │ │ └── view.dart │ ├── home_page │ │ ├── action.dart │ │ ├── adapter │ │ │ ├── adapter.dart │ │ │ ├── head │ │ │ │ ├── action.dart │ │ │ │ ├── component.dart │ │ │ │ ├── effect.dart │ │ │ │ ├── reducer.dart │ │ │ │ ├── state.dart │ │ │ │ └── view.dart │ │ │ └── item │ │ │ │ ├── action.dart │ │ │ │ ├── component.dart │ │ │ │ ├── effect.dart │ │ │ │ ├── reducer.dart │ │ │ │ └── view.dart │ │ ├── effect.dart │ │ ├── page.dart │ │ ├── reducer.dart │ │ ├── sideslip_page │ │ │ ├── action.dart │ │ │ ├── component.dart │ │ │ ├── effect.dart │ │ │ ├── reducer.dart │ │ │ ├── state.dart │ │ │ └── view.dart │ │ ├── state.dart │ │ └── view.dart │ ├── main_page │ │ ├── action.dart │ │ ├── effect.dart │ │ ├── page.dart │ │ ├── reducer.dart │ │ ├── state.dart │ │ └── view.dart │ ├── start_page │ │ ├── action.dart │ │ ├── effect.dart │ │ ├── page.dart │ │ ├── reducer.dart │ │ ├── state.dart │ │ └── view.dart │ └── user_jurisdiction │ │ ├── user_pwd_login │ │ ├── action.dart │ │ ├── effect.dart │ │ ├── page.dart │ │ ├── reducer.dart │ │ ├── state.dart │ │ └── view.dart │ │ └── user_register │ │ ├── action.dart │ │ ├── effect.dart │ │ ├── page.dart │ │ ├── reducer.dart │ │ ├── state.dart │ │ └── view.dart ├── utils │ ├── common_util.dart │ ├── logger_util.dart │ ├── sp_util.dart │ └── toast_util.dart └── widget │ ├── big_green_guy_controller.dart │ ├── custom_route.dart │ ├── custom_sliver_head_delegate.dart │ ├── low_poly_wolf_controller.dart │ ├── my_web_page.dart │ ├── net_loading_dialog.dart │ └── user_account_text_field_widget.dart ├── pubspec.lock ├── pubspec.yaml ├── res └── values │ ├── strings_en.arb │ └── strings_zh.arb └── resources ├── animations ├── Big Green Guy.nima ├── Big Green Guy.png ├── Teddy.flr └── low_poly_wolf.flr ├── gif ├── demonstration_login.gif └── startPage.gif ├── images ├── aixing.png ├── android.png ├── android_img.jpg ├── defult_bac_img.png ├── flutter_logo.png ├── huo_false.png ├── huo_true.png ├── ios_img.jpg ├── my_flutter_logo_false.png ├── my_flutter_logo_true.png ├── no_select_cir.png ├── select_cir.png └── sh_img.jpg ├── project_resources ├── android_img.png ├── android_start.png ├── erro_one.png ├── erro_two.png ├── ios_img.png └── project_structure.png └── video ├── guide_one.mp4 ├── guide_thread.mp4 ├── guide_two.mp4 └── start_page_video.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/wandroid_flutter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/app/src/main/java/com/example/wandroid_flutter/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/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/mingtianguohou100/wanandroid-flutter/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/mingtianguohou100/wanandroid-flutter/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/mingtianguohou100/wanandroid-flutter/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/mingtianguohou100/wanandroid-flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/app/app_page/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/app_page/action.dart -------------------------------------------------------------------------------- /lib/app/app_page/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/app_page/effect.dart -------------------------------------------------------------------------------- /lib/app/app_page/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/app_page/page.dart -------------------------------------------------------------------------------- /lib/app/app_page/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/app_page/reducer.dart -------------------------------------------------------------------------------- /lib/app/app_page/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/app_page/state.dart -------------------------------------------------------------------------------- /lib/app/app_page/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/app_page/view.dart -------------------------------------------------------------------------------- /lib/app/app_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/app_route.dart -------------------------------------------------------------------------------- /lib/app/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/config.dart -------------------------------------------------------------------------------- /lib/app/global_constant/global_constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/global_constant/global_constant.dart -------------------------------------------------------------------------------- /lib/app/global_constant/global_theme_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/global_constant/global_theme_style.dart -------------------------------------------------------------------------------- /lib/app/global_fish_redux/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/global_fish_redux/action.dart -------------------------------------------------------------------------------- /lib/app/global_fish_redux/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/global_fish_redux/reducer.dart -------------------------------------------------------------------------------- /lib/app/global_fish_redux/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/global_fish_redux/state.dart -------------------------------------------------------------------------------- /lib/app/global_fish_redux/store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/global_fish_redux/store.dart -------------------------------------------------------------------------------- /lib/app/network/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/network/api.dart -------------------------------------------------------------------------------- /lib/app/network/common_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/network/common_service.dart -------------------------------------------------------------------------------- /lib/app/network/http_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/app/network/http_manager.dart -------------------------------------------------------------------------------- /lib/generated/i18n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/generated/i18n.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/HomeHeadBannerBean.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/model/HomeHeadBannerBean.dart -------------------------------------------------------------------------------- /lib/model/HomeHeadBannerBean.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/model/HomeHeadBannerBean.g.dart -------------------------------------------------------------------------------- /lib/model/HomeInfomationBean.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/model/HomeInfomationBean.dart -------------------------------------------------------------------------------- /lib/model/HomeInfomationBean.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/model/HomeInfomationBean.g.dart -------------------------------------------------------------------------------- /lib/model/UserLoginBean.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/model/UserLoginBean.dart -------------------------------------------------------------------------------- /lib/model/UserLoginBean.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/model/UserLoginBean.g.dart -------------------------------------------------------------------------------- /lib/page/currency_webpage/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/currency_webpage/action.dart -------------------------------------------------------------------------------- /lib/page/currency_webpage/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/currency_webpage/effect.dart -------------------------------------------------------------------------------- /lib/page/currency_webpage/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/currency_webpage/page.dart -------------------------------------------------------------------------------- /lib/page/currency_webpage/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/currency_webpage/reducer.dart -------------------------------------------------------------------------------- /lib/page/currency_webpage/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/currency_webpage/state.dart -------------------------------------------------------------------------------- /lib/page/currency_webpage/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/currency_webpage/view.dart -------------------------------------------------------------------------------- /lib/page/home_page/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/action.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/adapter.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/head/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/head/action.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/head/component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/head/component.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/head/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/head/effect.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/head/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/head/reducer.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/head/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/head/state.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/head/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/head/view.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/item/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/item/action.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/item/component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/item/component.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/item/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/item/effect.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/item/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/item/reducer.dart -------------------------------------------------------------------------------- /lib/page/home_page/adapter/item/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/adapter/item/view.dart -------------------------------------------------------------------------------- /lib/page/home_page/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/effect.dart -------------------------------------------------------------------------------- /lib/page/home_page/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/page.dart -------------------------------------------------------------------------------- /lib/page/home_page/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/reducer.dart -------------------------------------------------------------------------------- /lib/page/home_page/sideslip_page/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/sideslip_page/action.dart -------------------------------------------------------------------------------- /lib/page/home_page/sideslip_page/component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/sideslip_page/component.dart -------------------------------------------------------------------------------- /lib/page/home_page/sideslip_page/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/sideslip_page/effect.dart -------------------------------------------------------------------------------- /lib/page/home_page/sideslip_page/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/sideslip_page/reducer.dart -------------------------------------------------------------------------------- /lib/page/home_page/sideslip_page/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/sideslip_page/state.dart -------------------------------------------------------------------------------- /lib/page/home_page/sideslip_page/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/sideslip_page/view.dart -------------------------------------------------------------------------------- /lib/page/home_page/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/state.dart -------------------------------------------------------------------------------- /lib/page/home_page/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/home_page/view.dart -------------------------------------------------------------------------------- /lib/page/main_page/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/main_page/action.dart -------------------------------------------------------------------------------- /lib/page/main_page/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/main_page/effect.dart -------------------------------------------------------------------------------- /lib/page/main_page/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/main_page/page.dart -------------------------------------------------------------------------------- /lib/page/main_page/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/main_page/reducer.dart -------------------------------------------------------------------------------- /lib/page/main_page/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/main_page/state.dart -------------------------------------------------------------------------------- /lib/page/main_page/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/main_page/view.dart -------------------------------------------------------------------------------- /lib/page/start_page/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/start_page/action.dart -------------------------------------------------------------------------------- /lib/page/start_page/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/start_page/effect.dart -------------------------------------------------------------------------------- /lib/page/start_page/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/start_page/page.dart -------------------------------------------------------------------------------- /lib/page/start_page/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/start_page/reducer.dart -------------------------------------------------------------------------------- /lib/page/start_page/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/start_page/state.dart -------------------------------------------------------------------------------- /lib/page/start_page/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/start_page/view.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_pwd_login/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_pwd_login/action.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_pwd_login/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_pwd_login/effect.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_pwd_login/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_pwd_login/page.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_pwd_login/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_pwd_login/reducer.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_pwd_login/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_pwd_login/state.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_pwd_login/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_pwd_login/view.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_register/action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_register/action.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_register/effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_register/effect.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_register/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_register/page.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_register/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_register/reducer.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_register/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_register/state.dart -------------------------------------------------------------------------------- /lib/page/user_jurisdiction/user_register/view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/page/user_jurisdiction/user_register/view.dart -------------------------------------------------------------------------------- /lib/utils/common_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/utils/common_util.dart -------------------------------------------------------------------------------- /lib/utils/logger_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/utils/logger_util.dart -------------------------------------------------------------------------------- /lib/utils/sp_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/utils/sp_util.dart -------------------------------------------------------------------------------- /lib/utils/toast_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/utils/toast_util.dart -------------------------------------------------------------------------------- /lib/widget/big_green_guy_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/widget/big_green_guy_controller.dart -------------------------------------------------------------------------------- /lib/widget/custom_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/widget/custom_route.dart -------------------------------------------------------------------------------- /lib/widget/custom_sliver_head_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/widget/custom_sliver_head_delegate.dart -------------------------------------------------------------------------------- /lib/widget/low_poly_wolf_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/widget/low_poly_wolf_controller.dart -------------------------------------------------------------------------------- /lib/widget/my_web_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/widget/my_web_page.dart -------------------------------------------------------------------------------- /lib/widget/net_loading_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/widget/net_loading_dialog.dart -------------------------------------------------------------------------------- /lib/widget/user_account_text_field_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/lib/widget/user_account_text_field_widget.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /res/values/strings_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/res/values/strings_en.arb -------------------------------------------------------------------------------- /res/values/strings_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/res/values/strings_zh.arb -------------------------------------------------------------------------------- /resources/animations/Big Green Guy.nima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/animations/Big Green Guy.nima -------------------------------------------------------------------------------- /resources/animations/Big Green Guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/animations/Big Green Guy.png -------------------------------------------------------------------------------- /resources/animations/Teddy.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/animations/Teddy.flr -------------------------------------------------------------------------------- /resources/animations/low_poly_wolf.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/animations/low_poly_wolf.flr -------------------------------------------------------------------------------- /resources/gif/demonstration_login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/gif/demonstration_login.gif -------------------------------------------------------------------------------- /resources/gif/startPage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/gif/startPage.gif -------------------------------------------------------------------------------- /resources/images/aixing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/aixing.png -------------------------------------------------------------------------------- /resources/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/android.png -------------------------------------------------------------------------------- /resources/images/android_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/android_img.jpg -------------------------------------------------------------------------------- /resources/images/defult_bac_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/defult_bac_img.png -------------------------------------------------------------------------------- /resources/images/flutter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/flutter_logo.png -------------------------------------------------------------------------------- /resources/images/huo_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/huo_false.png -------------------------------------------------------------------------------- /resources/images/huo_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/huo_true.png -------------------------------------------------------------------------------- /resources/images/ios_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/ios_img.jpg -------------------------------------------------------------------------------- /resources/images/my_flutter_logo_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/my_flutter_logo_false.png -------------------------------------------------------------------------------- /resources/images/my_flutter_logo_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/my_flutter_logo_true.png -------------------------------------------------------------------------------- /resources/images/no_select_cir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/no_select_cir.png -------------------------------------------------------------------------------- /resources/images/select_cir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/select_cir.png -------------------------------------------------------------------------------- /resources/images/sh_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/images/sh_img.jpg -------------------------------------------------------------------------------- /resources/project_resources/android_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/project_resources/android_img.png -------------------------------------------------------------------------------- /resources/project_resources/android_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/project_resources/android_start.png -------------------------------------------------------------------------------- /resources/project_resources/erro_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/project_resources/erro_one.png -------------------------------------------------------------------------------- /resources/project_resources/erro_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/project_resources/erro_two.png -------------------------------------------------------------------------------- /resources/project_resources/ios_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/project_resources/ios_img.png -------------------------------------------------------------------------------- /resources/project_resources/project_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/project_resources/project_structure.png -------------------------------------------------------------------------------- /resources/video/guide_one.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/video/guide_one.mp4 -------------------------------------------------------------------------------- /resources/video/guide_thread.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/video/guide_thread.mp4 -------------------------------------------------------------------------------- /resources/video/guide_two.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/video/guide_two.mp4 -------------------------------------------------------------------------------- /resources/video/start_page_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingtianguohou100/wanandroid-flutter/HEAD/resources/video/start_page_video.mp4 --------------------------------------------------------------------------------