├── .gitattributes ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ecommerce_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.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 ├── app-icon-background.png ├── app-icon-foreground.png ├── app-icon.png └── products │ ├── bruschetta-plate.jpg │ ├── flowers-plate.jpg │ ├── honey-pot.jpg │ ├── juicer-citrus-fruits.jpg │ ├── mozzarella-plate.jpg │ ├── pasta-plate.jpg │ ├── piggy-blue.jpg │ ├── piggy-green.jpg │ ├── piggy-pink.jpg │ ├── pizza-plate.jpg │ ├── plate-and-bowl.jpg │ ├── salt-pepper-lemon.jpg │ ├── salt-pepper-olives.jpg │ └── snacks-plate.jpg ├── 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 ├── l10n.yaml ├── lib ├── main.dart └── src │ ├── app.dart │ ├── common_widgets │ ├── action_text_button.dart │ ├── alert_dialogs.dart │ ├── async_value_widget.dart │ ├── custom_image.dart │ ├── custom_text_button.dart │ ├── decorated_box_with_shadow.dart │ ├── error_message_widget.dart │ ├── item_quantity_selector.dart │ ├── primary_button.dart │ ├── responsive_center.dart │ ├── responsive_scrollable_card.dart │ └── responsive_two_column_layout.dart │ ├── constants │ ├── app_sizes.dart │ ├── breakpoints.dart │ └── test_products.dart │ ├── features │ ├── address │ │ ├── domain │ │ │ └── address.dart │ │ └── presentation │ │ │ └── address_screen.dart │ ├── authentication │ │ ├── data │ │ │ └── fake_auth_repository.dart │ │ ├── domain │ │ │ └── app_user.dart │ │ └── presentation │ │ │ ├── account │ │ │ ├── account_screen.dart │ │ │ └── account_screen_controller.dart │ │ │ └── sign_in │ │ │ ├── email_password_sign_in_controller.dart │ │ │ ├── email_password_sign_in_screen.dart │ │ │ ├── email_password_sign_in_state.dart │ │ │ └── string_validators.dart │ ├── cart │ │ ├── domain │ │ │ ├── cart.dart │ │ │ ├── item.dart │ │ │ └── mutable_cart.dart │ │ └── presentation │ │ │ ├── add_to_cart │ │ │ └── add_to_cart_widget.dart │ │ │ ├── cart_total │ │ │ ├── cart_total_text.dart │ │ │ └── cart_total_with_cta.dart │ │ │ └── shopping_cart │ │ │ ├── shopping_cart_item.dart │ │ │ ├── shopping_cart_items_builder.dart │ │ │ └── shopping_cart_screen.dart │ ├── checkout │ │ └── presentation │ │ │ ├── checkout_screen │ │ │ └── checkout_screen.dart │ │ │ └── payment │ │ │ ├── payment_button.dart │ │ │ └── payment_page.dart │ ├── not_found │ │ ├── empty_placeholder_widget.dart │ │ └── not_found_screen.dart │ ├── orders │ │ ├── domain │ │ │ ├── order.dart │ │ │ └── purchase.dart │ │ └── presentation │ │ │ └── orders_list │ │ │ ├── order_card.dart │ │ │ ├── order_item_list_tile.dart │ │ │ ├── order_status_label.dart │ │ │ └── orders_list_screen.dart │ ├── products │ │ ├── data │ │ │ └── fake_products_repository.dart │ │ ├── domain │ │ │ └── product.dart │ │ └── presentation │ │ │ ├── home_app_bar │ │ │ ├── home_app_bar.dart │ │ │ ├── more_menu_button.dart │ │ │ └── shopping_cart_icon.dart │ │ │ ├── product_screen │ │ │ ├── leave_review_action.dart │ │ │ ├── product_average_rating.dart │ │ │ └── product_screen.dart │ │ │ └── products_list │ │ │ ├── product_card.dart │ │ │ ├── products_grid.dart │ │ │ ├── products_list_screen.dart │ │ │ └── products_search_text_field.dart │ └── reviews │ │ ├── domain │ │ └── review.dart │ │ └── presentation │ │ ├── leave_review_screen │ │ └── leave_review_screen.dart │ │ └── product_reviews │ │ ├── product_rating_bar.dart │ │ ├── product_review_card.dart │ │ └── product_reviews_list.dart │ ├── localization │ ├── app_en.arb │ └── string_hardcoded.dart │ ├── routing │ └── app_router.dart │ └── utils │ ├── async_value_ui.dart │ ├── currency_formatter.dart │ ├── date_formatter.dart │ └── in_memory_store.dart ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/ecommerce_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/kotlin/com/example/ecommerce_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/app-icon-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/app-icon-background.png -------------------------------------------------------------------------------- /assets/app-icon-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/app-icon-foreground.png -------------------------------------------------------------------------------- /assets/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/app-icon.png -------------------------------------------------------------------------------- /assets/products/bruschetta-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/bruschetta-plate.jpg -------------------------------------------------------------------------------- /assets/products/flowers-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/flowers-plate.jpg -------------------------------------------------------------------------------- /assets/products/honey-pot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/honey-pot.jpg -------------------------------------------------------------------------------- /assets/products/juicer-citrus-fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/juicer-citrus-fruits.jpg -------------------------------------------------------------------------------- /assets/products/mozzarella-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/mozzarella-plate.jpg -------------------------------------------------------------------------------- /assets/products/pasta-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/pasta-plate.jpg -------------------------------------------------------------------------------- /assets/products/piggy-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/piggy-blue.jpg -------------------------------------------------------------------------------- /assets/products/piggy-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/piggy-green.jpg -------------------------------------------------------------------------------- /assets/products/piggy-pink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/piggy-pink.jpg -------------------------------------------------------------------------------- /assets/products/pizza-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/pizza-plate.jpg -------------------------------------------------------------------------------- /assets/products/plate-and-bowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/plate-and-bowl.jpg -------------------------------------------------------------------------------- /assets/products/salt-pepper-lemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/salt-pepper-lemon.jpg -------------------------------------------------------------------------------- /assets/products/salt-pepper-olives.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/salt-pepper-olives.jpg -------------------------------------------------------------------------------- /assets/products/snacks-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/assets/products/snacks-plate.jpg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/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/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/app.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/action_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/action_text_button.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/alert_dialogs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/alert_dialogs.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/async_value_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/async_value_widget.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/custom_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/custom_image.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/custom_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/custom_text_button.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/decorated_box_with_shadow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/decorated_box_with_shadow.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/error_message_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/error_message_widget.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/item_quantity_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/item_quantity_selector.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/primary_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/primary_button.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/responsive_center.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/responsive_center.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/responsive_scrollable_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/responsive_scrollable_card.dart -------------------------------------------------------------------------------- /lib/src/common_widgets/responsive_two_column_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/common_widgets/responsive_two_column_layout.dart -------------------------------------------------------------------------------- /lib/src/constants/app_sizes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/constants/app_sizes.dart -------------------------------------------------------------------------------- /lib/src/constants/breakpoints.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/constants/breakpoints.dart -------------------------------------------------------------------------------- /lib/src/constants/test_products.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/constants/test_products.dart -------------------------------------------------------------------------------- /lib/src/features/address/domain/address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/address/domain/address.dart -------------------------------------------------------------------------------- /lib/src/features/address/presentation/address_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/address/presentation/address_screen.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/data/fake_auth_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/data/fake_auth_repository.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/domain/app_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/domain/app_user.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/presentation/account/account_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/presentation/account/account_screen.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/presentation/account/account_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/presentation/account/account_screen_controller.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/presentation/sign_in/email_password_sign_in_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/presentation/sign_in/email_password_sign_in_controller.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/presentation/sign_in/email_password_sign_in_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/presentation/sign_in/email_password_sign_in_screen.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/presentation/sign_in/email_password_sign_in_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/presentation/sign_in/email_password_sign_in_state.dart -------------------------------------------------------------------------------- /lib/src/features/authentication/presentation/sign_in/string_validators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/authentication/presentation/sign_in/string_validators.dart -------------------------------------------------------------------------------- /lib/src/features/cart/domain/cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/domain/cart.dart -------------------------------------------------------------------------------- /lib/src/features/cart/domain/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/domain/item.dart -------------------------------------------------------------------------------- /lib/src/features/cart/domain/mutable_cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/domain/mutable_cart.dart -------------------------------------------------------------------------------- /lib/src/features/cart/presentation/add_to_cart/add_to_cart_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/presentation/add_to_cart/add_to_cart_widget.dart -------------------------------------------------------------------------------- /lib/src/features/cart/presentation/cart_total/cart_total_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/presentation/cart_total/cart_total_text.dart -------------------------------------------------------------------------------- /lib/src/features/cart/presentation/cart_total/cart_total_with_cta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/presentation/cart_total/cart_total_with_cta.dart -------------------------------------------------------------------------------- /lib/src/features/cart/presentation/shopping_cart/shopping_cart_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/presentation/shopping_cart/shopping_cart_item.dart -------------------------------------------------------------------------------- /lib/src/features/cart/presentation/shopping_cart/shopping_cart_items_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/presentation/shopping_cart/shopping_cart_items_builder.dart -------------------------------------------------------------------------------- /lib/src/features/cart/presentation/shopping_cart/shopping_cart_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/cart/presentation/shopping_cart/shopping_cart_screen.dart -------------------------------------------------------------------------------- /lib/src/features/checkout/presentation/checkout_screen/checkout_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/checkout/presentation/checkout_screen/checkout_screen.dart -------------------------------------------------------------------------------- /lib/src/features/checkout/presentation/payment/payment_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/checkout/presentation/payment/payment_button.dart -------------------------------------------------------------------------------- /lib/src/features/checkout/presentation/payment/payment_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/checkout/presentation/payment/payment_page.dart -------------------------------------------------------------------------------- /lib/src/features/not_found/empty_placeholder_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/not_found/empty_placeholder_widget.dart -------------------------------------------------------------------------------- /lib/src/features/not_found/not_found_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/not_found/not_found_screen.dart -------------------------------------------------------------------------------- /lib/src/features/orders/domain/order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/orders/domain/order.dart -------------------------------------------------------------------------------- /lib/src/features/orders/domain/purchase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/orders/domain/purchase.dart -------------------------------------------------------------------------------- /lib/src/features/orders/presentation/orders_list/order_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/orders/presentation/orders_list/order_card.dart -------------------------------------------------------------------------------- /lib/src/features/orders/presentation/orders_list/order_item_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/orders/presentation/orders_list/order_item_list_tile.dart -------------------------------------------------------------------------------- /lib/src/features/orders/presentation/orders_list/order_status_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/orders/presentation/orders_list/order_status_label.dart -------------------------------------------------------------------------------- /lib/src/features/orders/presentation/orders_list/orders_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/orders/presentation/orders_list/orders_list_screen.dart -------------------------------------------------------------------------------- /lib/src/features/products/data/fake_products_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/data/fake_products_repository.dart -------------------------------------------------------------------------------- /lib/src/features/products/domain/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/domain/product.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/home_app_bar/home_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/home_app_bar/home_app_bar.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/home_app_bar/more_menu_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/home_app_bar/more_menu_button.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/home_app_bar/shopping_cart_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/home_app_bar/shopping_cart_icon.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/product_screen/leave_review_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/product_screen/leave_review_action.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/product_screen/product_average_rating.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/product_screen/product_average_rating.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/product_screen/product_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/product_screen/product_screen.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/products_list/product_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/products_list/product_card.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/products_list/products_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/products_list/products_grid.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/products_list/products_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/products_list/products_list_screen.dart -------------------------------------------------------------------------------- /lib/src/features/products/presentation/products_list/products_search_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/products/presentation/products_list/products_search_text_field.dart -------------------------------------------------------------------------------- /lib/src/features/reviews/domain/review.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/reviews/domain/review.dart -------------------------------------------------------------------------------- /lib/src/features/reviews/presentation/leave_review_screen/leave_review_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/reviews/presentation/leave_review_screen/leave_review_screen.dart -------------------------------------------------------------------------------- /lib/src/features/reviews/presentation/product_reviews/product_rating_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/reviews/presentation/product_reviews/product_rating_bar.dart -------------------------------------------------------------------------------- /lib/src/features/reviews/presentation/product_reviews/product_review_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/reviews/presentation/product_reviews/product_review_card.dart -------------------------------------------------------------------------------- /lib/src/features/reviews/presentation/product_reviews/product_reviews_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/features/reviews/presentation/product_reviews/product_reviews_list.dart -------------------------------------------------------------------------------- /lib/src/localization/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/localization/app_en.arb -------------------------------------------------------------------------------- /lib/src/localization/string_hardcoded.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/localization/string_hardcoded.dart -------------------------------------------------------------------------------- /lib/src/routing/app_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/routing/app_router.dart -------------------------------------------------------------------------------- /lib/src/utils/async_value_ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/utils/async_value_ui.dart -------------------------------------------------------------------------------- /lib/src/utils/currency_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/utils/currency_formatter.dart -------------------------------------------------------------------------------- /lib/src/utils/date_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/utils/date_formatter.dart -------------------------------------------------------------------------------- /lib/src/utils/in_memory_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/lib/src/utils/in_memory_store.dart -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahrie127/ddd_flutter3_gorouter_riverpod/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------