├── .gitignore ├── README.md └── shopping_app ├── .flutter-plugins-dependencies ├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── shopping_app │ │ │ │ └── MainActivity.kt │ │ └── 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 ├── assets ├── icon │ ├── ex01.png │ ├── ex02.png │ ├── ex03.png │ ├── heart.png │ ├── heart_outline.png │ └── right-arrow.png ├── images │ ├── amex.png │ ├── chip.png │ ├── discover.png │ ├── mastercard.png │ ├── snkr_01.png │ ├── snkr_02.png │ ├── snkr_03.png │ └── visa.png └── locale │ ├── localization_en.json │ └── localization_vi.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── app.dart ├── bloc_observer.dart ├── db │ └── db_provider.dart ├── feature │ ├── auth │ │ ├── helper │ │ │ └── validators_transformer.dart │ │ ├── login │ │ │ ├── bloc │ │ │ │ ├── login_bloc.dart │ │ │ │ ├── login_event.dart │ │ │ │ └── login_state.dart │ │ │ ├── login_screen.dart │ │ │ └── repository │ │ │ │ ├── firebase_login_repository.dart │ │ │ │ ├── login_repository.dart │ │ │ │ └── repository.dart │ │ ├── model │ │ │ └── user_app.dart │ │ └── register │ │ │ ├── register_bloc.dart │ │ │ └── register_screen.dart │ ├── cart │ │ ├── bloc │ │ │ ├── cart_bloc.dart │ │ │ ├── cart_event.dart │ │ │ └── cart_state.dart │ │ ├── models │ │ │ ├── cart.dart │ │ │ └── cart_item.dart │ │ ├── repository │ │ │ ├── cart_repository.dart │ │ │ └── cart_repository_local.dart │ │ └── ui │ │ │ └── cart_screen.dart │ ├── checkout │ │ └── checkout_screen.dart │ ├── credit_card_details │ │ ├── card_details_screen.dart │ │ └── models │ │ │ └── credit_card_model.dart │ ├── discover │ │ ├── bloc │ │ │ ├── discover_bloc.dart │ │ │ ├── discover_event.dart │ │ │ └── discover_state.dart │ │ ├── model │ │ │ └── product.dart │ │ ├── repository │ │ │ ├── discover_repository.dart │ │ │ └── firebase_discover_repository.dart │ │ └── ui │ │ │ └── discover_screen.dart │ ├── home │ │ └── home.dart │ ├── product_category │ │ └── product_categorys_screen.dart │ ├── product_details │ │ ├── bloc │ │ │ ├── product_details_bloc.dart │ │ │ ├── product_details_event.dart │ │ │ └── product_details_state.dart │ │ ├── repository │ │ │ └── product_details_repository.dart │ │ └── ui │ │ │ ├── popup_desc_details.dart │ │ │ └── product_details_screen.dart │ ├── profile │ │ ├── bloc │ │ │ ├── profile_bloc.dart │ │ │ ├── profile_event.dart │ │ │ └── profile_state.dart │ │ ├── profile_screen.dart │ │ └── repository │ │ │ ├── firebase_profile_repository.dart │ │ │ └── profile_repository.dart │ ├── shipping │ │ ├── model │ │ │ └── ship_method.dart │ │ └── shipping_method_screen.dart │ └── wishlist │ │ └── ui │ │ └── wishlist_screen.dart ├── localization │ └── app_localization.dart ├── main.dart ├── resources │ ├── R.dart │ ├── app_data.dart │ ├── app_theme.dart │ ├── colors.dart │ ├── dimens.dart │ ├── icons.dart │ ├── resources.dart │ ├── strings.dart │ └── utils.dart ├── route │ ├── route_constants.dart │ ├── router.dart │ └── slide_route_builder.dart └── widget │ ├── alert_dialog.dart │ ├── appbar.dart │ ├── bottom_dialog.dart │ ├── card_component.dart │ ├── card_product.dart │ ├── credit_card_widget.dart │ ├── loader_wiget.dart │ └── quater_circle.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshot ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── img4.jpg ├── img5.jpg ├── img6.jpg └── img7.jpg └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/README.md -------------------------------------------------------------------------------- /shopping_app/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /shopping_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/.gitignore -------------------------------------------------------------------------------- /shopping_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/.metadata -------------------------------------------------------------------------------- /shopping_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/README.md -------------------------------------------------------------------------------- /shopping_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/.gitignore -------------------------------------------------------------------------------- /shopping_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/build.gradle -------------------------------------------------------------------------------- /shopping_app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/kotlin/com/example/shopping_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/kotlin/com/example/shopping_app/MainActivity.kt -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shopping_app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /shopping_app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /shopping_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/build.gradle -------------------------------------------------------------------------------- /shopping_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/gradle.properties -------------------------------------------------------------------------------- /shopping_app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /shopping_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/android/settings.gradle -------------------------------------------------------------------------------- /shopping_app/assets/icon/ex01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/icon/ex01.png -------------------------------------------------------------------------------- /shopping_app/assets/icon/ex02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/icon/ex02.png -------------------------------------------------------------------------------- /shopping_app/assets/icon/ex03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/icon/ex03.png -------------------------------------------------------------------------------- /shopping_app/assets/icon/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/icon/heart.png -------------------------------------------------------------------------------- /shopping_app/assets/icon/heart_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/icon/heart_outline.png -------------------------------------------------------------------------------- /shopping_app/assets/icon/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/icon/right-arrow.png -------------------------------------------------------------------------------- /shopping_app/assets/images/amex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/amex.png -------------------------------------------------------------------------------- /shopping_app/assets/images/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/chip.png -------------------------------------------------------------------------------- /shopping_app/assets/images/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/discover.png -------------------------------------------------------------------------------- /shopping_app/assets/images/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/mastercard.png -------------------------------------------------------------------------------- /shopping_app/assets/images/snkr_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/snkr_01.png -------------------------------------------------------------------------------- /shopping_app/assets/images/snkr_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/snkr_02.png -------------------------------------------------------------------------------- /shopping_app/assets/images/snkr_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/snkr_03.png -------------------------------------------------------------------------------- /shopping_app/assets/images/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/images/visa.png -------------------------------------------------------------------------------- /shopping_app/assets/locale/localization_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/locale/localization_en.json -------------------------------------------------------------------------------- /shopping_app/assets/locale/localization_vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/assets/locale/localization_vi.json -------------------------------------------------------------------------------- /shopping_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/.gitignore -------------------------------------------------------------------------------- /shopping_app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /shopping_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /shopping_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /shopping_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /shopping_app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /shopping_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /shopping_app/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/app.dart -------------------------------------------------------------------------------- /shopping_app/lib/bloc_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/bloc_observer.dart -------------------------------------------------------------------------------- /shopping_app/lib/db/db_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/db/db_provider.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/helper/validators_transformer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/helper/validators_transformer.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/login/bloc/login_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/login/bloc/login_bloc.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/login/bloc/login_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/login/bloc/login_event.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/login/bloc/login_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/login/bloc/login_state.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/login/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/login/login_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/login/repository/firebase_login_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/login/repository/firebase_login_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/login/repository/login_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/login/repository/login_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/login/repository/repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/login/repository/repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/model/user_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/model/user_app.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/register/register_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/register/register_bloc.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/auth/register/register_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/auth/register/register_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/bloc/cart_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/bloc/cart_bloc.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/bloc/cart_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/bloc/cart_event.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/bloc/cart_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/bloc/cart_state.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/models/cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/models/cart.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/models/cart_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/models/cart_item.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/repository/cart_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/repository/cart_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/repository/cart_repository_local.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/repository/cart_repository_local.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/cart/ui/cart_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/cart/ui/cart_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/checkout/checkout_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/checkout/checkout_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/credit_card_details/card_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/credit_card_details/card_details_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/credit_card_details/models/credit_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/credit_card_details/models/credit_card_model.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/discover/bloc/discover_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/discover/bloc/discover_bloc.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/discover/bloc/discover_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/discover/bloc/discover_event.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/discover/bloc/discover_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/discover/bloc/discover_state.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/discover/model/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/discover/model/product.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/discover/repository/discover_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/discover/repository/discover_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/discover/repository/firebase_discover_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/discover/repository/firebase_discover_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/discover/ui/discover_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/discover/ui/discover_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/home/home.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/product_category/product_categorys_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/product_category/product_categorys_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/product_details/bloc/product_details_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/product_details/bloc/product_details_bloc.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/product_details/bloc/product_details_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/product_details/bloc/product_details_event.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/product_details/bloc/product_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/product_details/bloc/product_details_state.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/product_details/repository/product_details_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/product_details/repository/product_details_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/product_details/ui/popup_desc_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/product_details/ui/popup_desc_details.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/product_details/ui/product_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/product_details/ui/product_details_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/profile/bloc/profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/profile/bloc/profile_bloc.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/profile/bloc/profile_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/profile/bloc/profile_event.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/profile/bloc/profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/profile/bloc/profile_state.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/profile/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/profile/profile_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/profile/repository/firebase_profile_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/profile/repository/firebase_profile_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/profile/repository/profile_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/profile/repository/profile_repository.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/shipping/model/ship_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/shipping/model/ship_method.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/shipping/shipping_method_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/shipping/shipping_method_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/feature/wishlist/ui/wishlist_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/feature/wishlist/ui/wishlist_screen.dart -------------------------------------------------------------------------------- /shopping_app/lib/localization/app_localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/localization/app_localization.dart -------------------------------------------------------------------------------- /shopping_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/main.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/R.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/R.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/app_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/app_data.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/app_theme.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/colors.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/dimens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/dimens.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/icons.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/resources.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/resources.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/strings.dart -------------------------------------------------------------------------------- /shopping_app/lib/resources/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/resources/utils.dart -------------------------------------------------------------------------------- /shopping_app/lib/route/route_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/route/route_constants.dart -------------------------------------------------------------------------------- /shopping_app/lib/route/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/route/router.dart -------------------------------------------------------------------------------- /shopping_app/lib/route/slide_route_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/route/slide_route_builder.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/alert_dialog.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/appbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/appbar.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/bottom_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/bottom_dialog.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/card_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/card_component.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/card_product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/card_product.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/credit_card_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/credit_card_widget.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/loader_wiget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/loader_wiget.dart -------------------------------------------------------------------------------- /shopping_app/lib/widget/quater_circle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/lib/widget/quater_circle.dart -------------------------------------------------------------------------------- /shopping_app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/pubspec.lock -------------------------------------------------------------------------------- /shopping_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/pubspec.yaml -------------------------------------------------------------------------------- /shopping_app/screenshot/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/screenshot/img1.jpg -------------------------------------------------------------------------------- /shopping_app/screenshot/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/screenshot/img2.jpg -------------------------------------------------------------------------------- /shopping_app/screenshot/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/screenshot/img3.jpg -------------------------------------------------------------------------------- /shopping_app/screenshot/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/screenshot/img4.jpg -------------------------------------------------------------------------------- /shopping_app/screenshot/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/screenshot/img5.jpg -------------------------------------------------------------------------------- /shopping_app/screenshot/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/screenshot/img6.jpg -------------------------------------------------------------------------------- /shopping_app/screenshot/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/screenshot/img7.jpg -------------------------------------------------------------------------------- /shopping_app/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congtieniuh/Flutter-Shopping-App-Bloc/HEAD/shopping_app/test/widget_test.dart --------------------------------------------------------------------------------