├── .flutter-plugins-dependencies ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── learn_flutter │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launch_image.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 ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Flutter.podspec │ ├── Release.xcconfig │ └── flutter_export_environment.sh ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── 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 ├── api │ └── api.dart ├── assets │ ├── fonts │ │ ├── Flamante-Roma-Medium.ttf │ │ ├── Flamante-Roma-MediumItalic.ttf │ │ ├── Lato-Bold.ttf │ │ └── PingFang.ttf │ └── json │ │ ├── cart.json │ │ ├── cart_all.json │ │ ├── catrgory.json │ │ ├── home.json │ │ ├── item.json │ │ ├── item_all.json │ │ ├── movie.json │ │ ├── pre_order.json │ │ ├── submit_order.json │ │ ├── user_info.json │ │ └── user_info_all.json ├── bean │ ├── category │ │ ├── category_banner_response_entity.dart │ │ ├── category_entity.dart │ │ ├── category_response_entity.dart │ │ └── subcategory_response_entity.dart │ ├── entity_factory.dart │ ├── floor │ │ └── floor_model_entity.dart │ ├── home │ │ ├── home_model_entity.dart │ │ ├── welcome_home.dart │ │ └── welcome_home.g.dart │ ├── item │ │ ├── recommend_item_response.dart │ │ └── recommend_item_response.g.dart │ ├── item_info │ │ └── item_info_response_entity.dart │ ├── request │ │ ├── request.dart │ │ └── request.g.dart │ ├── settings │ │ └── settings_response_entity.dart │ ├── shopcart │ │ └── shopcart_response_entity.dart │ └── user │ │ └── user_info_response_entity.dart ├── core │ └── global.dart ├── generated │ └── json │ │ ├── base │ │ ├── json_convert_content.dart │ │ └── json_filed.dart │ │ └── settings_response_entity_helper.dart ├── leancloud_config.dart ├── main.dart ├── model │ ├── counter.dart │ └── global.dart ├── pages │ ├── category │ │ ├── category.dart │ │ ├── master_category.dart │ │ ├── search_delegate.dart │ │ ├── subcategory.dart │ │ └── subcategory_item.dart │ ├── general_settings │ │ └── general_settings.dart │ ├── home │ │ ├── ad.dart │ │ ├── floor.dart │ │ ├── header.dart │ │ ├── home.dart │ │ ├── index.dart │ │ ├── item.dart │ │ ├── item_list.dart │ │ ├── scroll.dart │ │ ├── sliver_header.dart │ │ └── swipper_image.dart │ ├── item_info │ │ ├── card_item.dart │ │ ├── cholice_chip_select.dart │ │ ├── footer.dart │ │ ├── index.dart │ │ ├── item_discount.dart │ │ ├── item_order.dart │ │ ├── item_rank.dart │ │ ├── item_sku.dart │ │ ├── item_title.dart │ │ └── swipper_item.dart │ ├── login │ │ └── login.dart │ ├── mine │ │ ├── index.dart │ │ ├── user_card.dart │ │ ├── user_header.dart │ │ ├── user_order.dart │ │ └── user_wallet.dart │ ├── movie │ │ └── movie.dart │ ├── order_list │ │ ├── order_card.dart │ │ └── order_list.dart │ ├── register │ │ └── register.dart │ ├── settings │ │ └── settings.dart │ ├── shopcart │ │ ├── index.dart │ │ └── shopcart_card.dart │ └── webview_page │ │ └── index.dart ├── service │ ├── category_service.dart │ ├── login_service.dart │ ├── settings_service.dart │ └── shopcart_service.dart ├── utils │ ├── color_util.dart │ └── request_util.dart └── widgets │ ├── countdown.dart │ ├── counter.dart │ ├── floor.dart │ ├── round_checkbox.dart │ └── tag.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/learn_flutter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/app/src/main/java/com/example/learn_flutter/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_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/DiscoverForever/learn_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/launch_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Flutter/Flutter.podspec -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_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/DiscoverForever/learn_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/api/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/api/api.dart -------------------------------------------------------------------------------- /lib/assets/fonts/Flamante-Roma-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/fonts/Flamante-Roma-Medium.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/Flamante-Roma-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/fonts/Flamante-Roma-MediumItalic.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/PingFang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/fonts/PingFang.ttf -------------------------------------------------------------------------------- /lib/assets/json/cart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/cart.json -------------------------------------------------------------------------------- /lib/assets/json/cart_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/cart_all.json -------------------------------------------------------------------------------- /lib/assets/json/catrgory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/catrgory.json -------------------------------------------------------------------------------- /lib/assets/json/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/home.json -------------------------------------------------------------------------------- /lib/assets/json/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/item.json -------------------------------------------------------------------------------- /lib/assets/json/item_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/item_all.json -------------------------------------------------------------------------------- /lib/assets/json/movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/movie.json -------------------------------------------------------------------------------- /lib/assets/json/pre_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/pre_order.json -------------------------------------------------------------------------------- /lib/assets/json/submit_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/submit_order.json -------------------------------------------------------------------------------- /lib/assets/json/user_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/user_info.json -------------------------------------------------------------------------------- /lib/assets/json/user_info_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/assets/json/user_info_all.json -------------------------------------------------------------------------------- /lib/bean/category/category_banner_response_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/category/category_banner_response_entity.dart -------------------------------------------------------------------------------- /lib/bean/category/category_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/category/category_entity.dart -------------------------------------------------------------------------------- /lib/bean/category/category_response_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/category/category_response_entity.dart -------------------------------------------------------------------------------- /lib/bean/category/subcategory_response_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/category/subcategory_response_entity.dart -------------------------------------------------------------------------------- /lib/bean/entity_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/entity_factory.dart -------------------------------------------------------------------------------- /lib/bean/floor/floor_model_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/floor/floor_model_entity.dart -------------------------------------------------------------------------------- /lib/bean/home/home_model_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/home/home_model_entity.dart -------------------------------------------------------------------------------- /lib/bean/home/welcome_home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/home/welcome_home.dart -------------------------------------------------------------------------------- /lib/bean/home/welcome_home.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/home/welcome_home.g.dart -------------------------------------------------------------------------------- /lib/bean/item/recommend_item_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/item/recommend_item_response.dart -------------------------------------------------------------------------------- /lib/bean/item/recommend_item_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/item/recommend_item_response.g.dart -------------------------------------------------------------------------------- /lib/bean/item_info/item_info_response_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/item_info/item_info_response_entity.dart -------------------------------------------------------------------------------- /lib/bean/request/request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/request/request.dart -------------------------------------------------------------------------------- /lib/bean/request/request.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/request/request.g.dart -------------------------------------------------------------------------------- /lib/bean/settings/settings_response_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/settings/settings_response_entity.dart -------------------------------------------------------------------------------- /lib/bean/shopcart/shopcart_response_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/shopcart/shopcart_response_entity.dart -------------------------------------------------------------------------------- /lib/bean/user/user_info_response_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/bean/user/user_info_response_entity.dart -------------------------------------------------------------------------------- /lib/core/global.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/core/global.dart -------------------------------------------------------------------------------- /lib/generated/json/base/json_convert_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/generated/json/base/json_convert_content.dart -------------------------------------------------------------------------------- /lib/generated/json/base/json_filed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/generated/json/base/json_filed.dart -------------------------------------------------------------------------------- /lib/generated/json/settings_response_entity_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/generated/json/settings_response_entity_helper.dart -------------------------------------------------------------------------------- /lib/leancloud_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/leancloud_config.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/counter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/model/counter.dart -------------------------------------------------------------------------------- /lib/model/global.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/model/global.dart -------------------------------------------------------------------------------- /lib/pages/category/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/category/category.dart -------------------------------------------------------------------------------- /lib/pages/category/master_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/category/master_category.dart -------------------------------------------------------------------------------- /lib/pages/category/search_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/category/search_delegate.dart -------------------------------------------------------------------------------- /lib/pages/category/subcategory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/category/subcategory.dart -------------------------------------------------------------------------------- /lib/pages/category/subcategory_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/category/subcategory_item.dart -------------------------------------------------------------------------------- /lib/pages/general_settings/general_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/general_settings/general_settings.dart -------------------------------------------------------------------------------- /lib/pages/home/ad.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/ad.dart -------------------------------------------------------------------------------- /lib/pages/home/floor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/floor.dart -------------------------------------------------------------------------------- /lib/pages/home/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/header.dart -------------------------------------------------------------------------------- /lib/pages/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/home.dart -------------------------------------------------------------------------------- /lib/pages/home/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/index.dart -------------------------------------------------------------------------------- /lib/pages/home/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/item.dart -------------------------------------------------------------------------------- /lib/pages/home/item_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/item_list.dart -------------------------------------------------------------------------------- /lib/pages/home/scroll.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/scroll.dart -------------------------------------------------------------------------------- /lib/pages/home/sliver_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/sliver_header.dart -------------------------------------------------------------------------------- /lib/pages/home/swipper_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/home/swipper_image.dart -------------------------------------------------------------------------------- /lib/pages/item_info/card_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/card_item.dart -------------------------------------------------------------------------------- /lib/pages/item_info/cholice_chip_select.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/cholice_chip_select.dart -------------------------------------------------------------------------------- /lib/pages/item_info/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/footer.dart -------------------------------------------------------------------------------- /lib/pages/item_info/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/index.dart -------------------------------------------------------------------------------- /lib/pages/item_info/item_discount.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/item_discount.dart -------------------------------------------------------------------------------- /lib/pages/item_info/item_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/item_order.dart -------------------------------------------------------------------------------- /lib/pages/item_info/item_rank.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/item_rank.dart -------------------------------------------------------------------------------- /lib/pages/item_info/item_sku.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/item_sku.dart -------------------------------------------------------------------------------- /lib/pages/item_info/item_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/item_title.dart -------------------------------------------------------------------------------- /lib/pages/item_info/swipper_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/item_info/swipper_item.dart -------------------------------------------------------------------------------- /lib/pages/login/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/login/login.dart -------------------------------------------------------------------------------- /lib/pages/mine/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/mine/index.dart -------------------------------------------------------------------------------- /lib/pages/mine/user_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/mine/user_card.dart -------------------------------------------------------------------------------- /lib/pages/mine/user_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/mine/user_header.dart -------------------------------------------------------------------------------- /lib/pages/mine/user_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/mine/user_order.dart -------------------------------------------------------------------------------- /lib/pages/mine/user_wallet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/mine/user_wallet.dart -------------------------------------------------------------------------------- /lib/pages/movie/movie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/movie/movie.dart -------------------------------------------------------------------------------- /lib/pages/order_list/order_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/order_list/order_card.dart -------------------------------------------------------------------------------- /lib/pages/order_list/order_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/order_list/order_list.dart -------------------------------------------------------------------------------- /lib/pages/register/register.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/register/register.dart -------------------------------------------------------------------------------- /lib/pages/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/settings/settings.dart -------------------------------------------------------------------------------- /lib/pages/shopcart/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/shopcart/index.dart -------------------------------------------------------------------------------- /lib/pages/shopcart/shopcart_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/shopcart/shopcart_card.dart -------------------------------------------------------------------------------- /lib/pages/webview_page/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/pages/webview_page/index.dart -------------------------------------------------------------------------------- /lib/service/category_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/service/category_service.dart -------------------------------------------------------------------------------- /lib/service/login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/service/login_service.dart -------------------------------------------------------------------------------- /lib/service/settings_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/service/settings_service.dart -------------------------------------------------------------------------------- /lib/service/shopcart_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/service/shopcart_service.dart -------------------------------------------------------------------------------- /lib/utils/color_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/utils/color_util.dart -------------------------------------------------------------------------------- /lib/utils/request_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/utils/request_util.dart -------------------------------------------------------------------------------- /lib/widgets/countdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/widgets/countdown.dart -------------------------------------------------------------------------------- /lib/widgets/counter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/widgets/counter.dart -------------------------------------------------------------------------------- /lib/widgets/floor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/widgets/floor.dart -------------------------------------------------------------------------------- /lib/widgets/round_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/widgets/round_checkbox.dart -------------------------------------------------------------------------------- /lib/widgets/tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/lib/widgets/tag.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscoverForever/learn_flutter/HEAD/test/widget_test.dart --------------------------------------------------------------------------------