├── .gitattributes ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ice_cream_shop_app │ │ │ │ └── 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 ├── avatars │ └── girl_avatar.png └── fonts │ ├── IceCreamShopApp.ttf │ └── montserrat │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Light.ttf │ ├── Montserrat-Medium.ttf │ └── Montserrat-Regular.ttf ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── core │ ├── components │ │ ├── button │ │ │ ├── gradient_color_button.dart │ │ │ └── two_color_button.dart │ │ ├── center │ │ │ ├── center_circular_progress.dart │ │ │ └── center_error.dart │ │ ├── image │ │ │ └── network_image_with_circular.dart │ │ ├── search │ │ │ └── search_field.dart │ │ └── text │ │ │ ├── not_found_navigation.dart │ │ │ └── title_text_with_container.dart │ ├── constants │ │ ├── app │ │ │ └── app_constant.dart │ │ ├── navigation │ │ │ └── navigation_constants.dart │ │ └── store │ │ │ └── store_service_constants.dart │ ├── extensions │ │ ├── context_extension.dart │ │ └── string_extension.dart │ ├── init │ │ ├── mixin │ │ │ └── message_mixin.dart │ │ ├── navigation │ │ │ ├── INavigationService.dart │ │ │ ├── navigation_route.dart │ │ │ └── navigation_service.dart │ │ ├── notifier │ │ │ └── provider_list.dart │ │ └── theme │ │ │ ├── app_theme.dart │ │ │ └── colors │ │ │ └── custom_colors.dart │ └── utilies │ │ └── border │ │ └── border_radius.dart ├── main.dart ├── pages │ ├── _product │ │ └── _widgets │ │ │ ├── button │ │ │ ├── circle_add_button.dart │ │ │ ├── gradient_color_button_with_icon.dart │ │ │ └── price_button.dart │ │ │ └── search │ │ │ └── search_field_with_filter.dart │ └── home │ │ ├── model │ │ ├── popular_ice_cream.dart │ │ ├── popular_ice_cream.g.dart │ │ ├── product_model.dart │ │ ├── product_model.g.dart │ │ ├── top_item.dart │ │ └── top_item.g.dart │ │ ├── page │ │ ├── appbar │ │ │ └── transparent_app_bar.dart │ │ ├── home_page.dart │ │ ├── popularicecream │ │ │ └── popular_ice_cream_widget.dart │ │ ├── prices │ │ │ └── prices_page.dart │ │ ├── topflavours │ │ │ └── top_flavours.dart │ │ └── topitem │ │ │ └── top_item_widget.dart │ │ ├── service │ │ ├── IStoreService.dart │ │ └── store_service.dart │ │ └── viewmodel │ │ └── home_view_model.dart └── presentation │ └── ice_cream_shop_app_icons.dart ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── 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/smhoz/ice_cream_shop_app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/ice_cream_shop_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/main/kotlin/com/example/ice_cream_shop_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/avatars/girl_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/assets/avatars/girl_avatar.png -------------------------------------------------------------------------------- /assets/fonts/IceCreamShopApp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/assets/fonts/IceCreamShopApp.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/assets/fonts/montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/assets/fonts/montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/assets/fonts/montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/assets/fonts/montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/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/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/core/components/button/gradient_color_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/button/gradient_color_button.dart -------------------------------------------------------------------------------- /lib/core/components/button/two_color_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/button/two_color_button.dart -------------------------------------------------------------------------------- /lib/core/components/center/center_circular_progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/center/center_circular_progress.dart -------------------------------------------------------------------------------- /lib/core/components/center/center_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/center/center_error.dart -------------------------------------------------------------------------------- /lib/core/components/image/network_image_with_circular.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/image/network_image_with_circular.dart -------------------------------------------------------------------------------- /lib/core/components/search/search_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/search/search_field.dart -------------------------------------------------------------------------------- /lib/core/components/text/not_found_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/text/not_found_navigation.dart -------------------------------------------------------------------------------- /lib/core/components/text/title_text_with_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/components/text/title_text_with_container.dart -------------------------------------------------------------------------------- /lib/core/constants/app/app_constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/constants/app/app_constant.dart -------------------------------------------------------------------------------- /lib/core/constants/navigation/navigation_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/constants/navigation/navigation_constants.dart -------------------------------------------------------------------------------- /lib/core/constants/store/store_service_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/constants/store/store_service_constants.dart -------------------------------------------------------------------------------- /lib/core/extensions/context_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/extensions/context_extension.dart -------------------------------------------------------------------------------- /lib/core/extensions/string_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/extensions/string_extension.dart -------------------------------------------------------------------------------- /lib/core/init/mixin/message_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/init/mixin/message_mixin.dart -------------------------------------------------------------------------------- /lib/core/init/navigation/INavigationService.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/init/navigation/INavigationService.dart -------------------------------------------------------------------------------- /lib/core/init/navigation/navigation_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/init/navigation/navigation_route.dart -------------------------------------------------------------------------------- /lib/core/init/navigation/navigation_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/init/navigation/navigation_service.dart -------------------------------------------------------------------------------- /lib/core/init/notifier/provider_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/init/notifier/provider_list.dart -------------------------------------------------------------------------------- /lib/core/init/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/init/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/core/init/theme/colors/custom_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/init/theme/colors/custom_colors.dart -------------------------------------------------------------------------------- /lib/core/utilies/border/border_radius.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/core/utilies/border/border_radius.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/_product/_widgets/button/circle_add_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/_product/_widgets/button/circle_add_button.dart -------------------------------------------------------------------------------- /lib/pages/_product/_widgets/button/gradient_color_button_with_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/_product/_widgets/button/gradient_color_button_with_icon.dart -------------------------------------------------------------------------------- /lib/pages/_product/_widgets/button/price_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/_product/_widgets/button/price_button.dart -------------------------------------------------------------------------------- /lib/pages/_product/_widgets/search/search_field_with_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/_product/_widgets/search/search_field_with_filter.dart -------------------------------------------------------------------------------- /lib/pages/home/model/popular_ice_cream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/model/popular_ice_cream.dart -------------------------------------------------------------------------------- /lib/pages/home/model/popular_ice_cream.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/model/popular_ice_cream.g.dart -------------------------------------------------------------------------------- /lib/pages/home/model/product_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/model/product_model.dart -------------------------------------------------------------------------------- /lib/pages/home/model/product_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/model/product_model.g.dart -------------------------------------------------------------------------------- /lib/pages/home/model/top_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/model/top_item.dart -------------------------------------------------------------------------------- /lib/pages/home/model/top_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/model/top_item.g.dart -------------------------------------------------------------------------------- /lib/pages/home/page/appbar/transparent_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/page/appbar/transparent_app_bar.dart -------------------------------------------------------------------------------- /lib/pages/home/page/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/page/home_page.dart -------------------------------------------------------------------------------- /lib/pages/home/page/popularicecream/popular_ice_cream_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/page/popularicecream/popular_ice_cream_widget.dart -------------------------------------------------------------------------------- /lib/pages/home/page/prices/prices_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/page/prices/prices_page.dart -------------------------------------------------------------------------------- /lib/pages/home/page/topflavours/top_flavours.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/page/topflavours/top_flavours.dart -------------------------------------------------------------------------------- /lib/pages/home/page/topitem/top_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/page/topitem/top_item_widget.dart -------------------------------------------------------------------------------- /lib/pages/home/service/IStoreService.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/service/IStoreService.dart -------------------------------------------------------------------------------- /lib/pages/home/service/store_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/service/store_service.dart -------------------------------------------------------------------------------- /lib/pages/home/viewmodel/home_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/pages/home/viewmodel/home_view_model.dart -------------------------------------------------------------------------------- /lib/presentation/ice_cream_shop_app_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/lib/presentation/ice_cream_shop_app_icons.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smhoz/ice_cream_shop_app/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------