├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── LICENSE.md ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── app │ │ │ │ └── FlutterMultiDexApplication.java │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── tarekalabd │ │ │ │ └── flutter_ecommerce │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── facebook-svgrepo-com.svg └── google-svgrepo-com.svg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 ├── controllers │ ├── auth │ │ ├── auth_cubit.dart │ │ └── auth_state.dart │ ├── auth_controller.dart │ ├── cart │ │ ├── cart_cubit.dart │ │ └── cart_state.dart │ ├── checkout │ │ ├── checkout_cubit.dart │ │ └── checkout_state.dart │ ├── database_controller.dart │ ├── home │ │ ├── home_cubit.dart │ │ └── home_state.dart │ └── product_details │ │ ├── product_details_cubit.dart │ │ └── product_details_state.dart ├── main.dart ├── models │ ├── add_to_cart_model.dart │ ├── delivery_method.dart │ ├── payment_method.dart │ ├── product.dart │ ├── shipping_address.dart │ └── user_data.dart ├── services │ ├── auth.dart │ ├── auth_services.dart │ ├── cart_services.dart │ ├── checkout_services.dart │ ├── firestore_services.dart │ ├── home_services.dart │ ├── product_details_services.dart │ └── stripe_services.dart ├── utilities │ ├── api_path.dart │ ├── args_models │ │ └── add_shipping_address_args.dart │ ├── assets.dart │ ├── constants.dart │ ├── enums.dart │ ├── router.dart │ └── routes.dart └── views │ ├── pages │ ├── auth_page.dart │ ├── bottom_navbar.dart │ ├── cart_page.dart │ ├── checkout │ │ ├── add_shipping_address_page.dart │ │ ├── checkout_page.dart │ │ ├── payment_methods_page.dart │ │ └── shipping_addresses_page.dart │ ├── home_page.dart │ ├── product_details.dart │ └── profle_page.dart │ └── widgets │ ├── cart_list_item.dart │ ├── checkout │ ├── add_new_card_bottom_sheet.dart │ ├── checkout_order_details.dart │ ├── delivery_method_item.dart │ ├── payment_component.dart │ ├── shipping_address_component.dart │ └── shipping_address_state_item.dart │ ├── drop_down_menu.dart │ ├── header_of_list.dart │ ├── list_header.dart │ ├── list_item_home.dart │ ├── main_button.dart │ ├── main_dialog.dart │ ├── order_summary_component.dart │ └── social_media_button.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/tarekalabd/flutter_ecommerce/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/kotlin/com/tarekalabd/flutter_ecommerce/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/facebook-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/assets/facebook-svgrepo-com.svg -------------------------------------------------------------------------------- /assets/google-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/assets/google-svgrepo-com.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/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/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/controllers/auth/auth_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/auth/auth_cubit.dart -------------------------------------------------------------------------------- /lib/controllers/auth/auth_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/auth/auth_state.dart -------------------------------------------------------------------------------- /lib/controllers/auth_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/auth_controller.dart -------------------------------------------------------------------------------- /lib/controllers/cart/cart_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/cart/cart_cubit.dart -------------------------------------------------------------------------------- /lib/controllers/cart/cart_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/cart/cart_state.dart -------------------------------------------------------------------------------- /lib/controllers/checkout/checkout_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/checkout/checkout_cubit.dart -------------------------------------------------------------------------------- /lib/controllers/checkout/checkout_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/checkout/checkout_state.dart -------------------------------------------------------------------------------- /lib/controllers/database_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/database_controller.dart -------------------------------------------------------------------------------- /lib/controllers/home/home_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/home/home_cubit.dart -------------------------------------------------------------------------------- /lib/controllers/home/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/home/home_state.dart -------------------------------------------------------------------------------- /lib/controllers/product_details/product_details_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/product_details/product_details_cubit.dart -------------------------------------------------------------------------------- /lib/controllers/product_details/product_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/controllers/product_details/product_details_state.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/add_to_cart_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/models/add_to_cart_model.dart -------------------------------------------------------------------------------- /lib/models/delivery_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/models/delivery_method.dart -------------------------------------------------------------------------------- /lib/models/payment_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/models/payment_method.dart -------------------------------------------------------------------------------- /lib/models/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/models/product.dart -------------------------------------------------------------------------------- /lib/models/shipping_address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/models/shipping_address.dart -------------------------------------------------------------------------------- /lib/models/user_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/models/user_data.dart -------------------------------------------------------------------------------- /lib/services/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/auth.dart -------------------------------------------------------------------------------- /lib/services/auth_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/auth_services.dart -------------------------------------------------------------------------------- /lib/services/cart_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/cart_services.dart -------------------------------------------------------------------------------- /lib/services/checkout_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/checkout_services.dart -------------------------------------------------------------------------------- /lib/services/firestore_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/firestore_services.dart -------------------------------------------------------------------------------- /lib/services/home_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/home_services.dart -------------------------------------------------------------------------------- /lib/services/product_details_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/product_details_services.dart -------------------------------------------------------------------------------- /lib/services/stripe_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/services/stripe_services.dart -------------------------------------------------------------------------------- /lib/utilities/api_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/utilities/api_path.dart -------------------------------------------------------------------------------- /lib/utilities/args_models/add_shipping_address_args.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/utilities/args_models/add_shipping_address_args.dart -------------------------------------------------------------------------------- /lib/utilities/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/utilities/assets.dart -------------------------------------------------------------------------------- /lib/utilities/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/utilities/constants.dart -------------------------------------------------------------------------------- /lib/utilities/enums.dart: -------------------------------------------------------------------------------- 1 | enum AuthFormType { 2 | login, 3 | register 4 | } -------------------------------------------------------------------------------- /lib/utilities/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/utilities/router.dart -------------------------------------------------------------------------------- /lib/utilities/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/utilities/routes.dart -------------------------------------------------------------------------------- /lib/views/pages/auth_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/auth_page.dart -------------------------------------------------------------------------------- /lib/views/pages/bottom_navbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/bottom_navbar.dart -------------------------------------------------------------------------------- /lib/views/pages/cart_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/cart_page.dart -------------------------------------------------------------------------------- /lib/views/pages/checkout/add_shipping_address_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/checkout/add_shipping_address_page.dart -------------------------------------------------------------------------------- /lib/views/pages/checkout/checkout_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/checkout/checkout_page.dart -------------------------------------------------------------------------------- /lib/views/pages/checkout/payment_methods_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/checkout/payment_methods_page.dart -------------------------------------------------------------------------------- /lib/views/pages/checkout/shipping_addresses_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/checkout/shipping_addresses_page.dart -------------------------------------------------------------------------------- /lib/views/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/home_page.dart -------------------------------------------------------------------------------- /lib/views/pages/product_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/product_details.dart -------------------------------------------------------------------------------- /lib/views/pages/profle_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/pages/profle_page.dart -------------------------------------------------------------------------------- /lib/views/widgets/cart_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/cart_list_item.dart -------------------------------------------------------------------------------- /lib/views/widgets/checkout/add_new_card_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/checkout/add_new_card_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/views/widgets/checkout/checkout_order_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/checkout/checkout_order_details.dart -------------------------------------------------------------------------------- /lib/views/widgets/checkout/delivery_method_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/checkout/delivery_method_item.dart -------------------------------------------------------------------------------- /lib/views/widgets/checkout/payment_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/checkout/payment_component.dart -------------------------------------------------------------------------------- /lib/views/widgets/checkout/shipping_address_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/checkout/shipping_address_component.dart -------------------------------------------------------------------------------- /lib/views/widgets/checkout/shipping_address_state_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/checkout/shipping_address_state_item.dart -------------------------------------------------------------------------------- /lib/views/widgets/drop_down_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/drop_down_menu.dart -------------------------------------------------------------------------------- /lib/views/widgets/header_of_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/header_of_list.dart -------------------------------------------------------------------------------- /lib/views/widgets/list_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/list_header.dart -------------------------------------------------------------------------------- /lib/views/widgets/list_item_home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/list_item_home.dart -------------------------------------------------------------------------------- /lib/views/widgets/main_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/main_button.dart -------------------------------------------------------------------------------- /lib/views/widgets/main_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/main_dialog.dart -------------------------------------------------------------------------------- /lib/views/widgets/order_summary_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/order_summary_component.dart -------------------------------------------------------------------------------- /lib/views/widgets/social_media_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/lib/views/widgets/social_media_button.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarekAlabd/flutter-ecommerce-live-coding/HEAD/test/widget_test.dart --------------------------------------------------------------------------------