├── .flutter-plugins ├── .flutter-plugins-dependencies ├── .gitattributes ├── .gitignore ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ ├── dhiwise │ │ │ │ └── flutterarch │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── example │ │ │ │ └── base_project │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── base_project_android.iml ├── build.gradle ├── flutterarch_android.iml ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ ├── image_not_found.png │ ├── img_clock.svg │ ├── img_favorite.svg │ ├── img_heroimage.png │ ├── img_image3.png │ ├── img_image7.png │ ├── img_image7_278x220.png │ ├── img_image8.png │ ├── img_image8_278x262.png │ ├── img_lock.svg │ ├── img_lock_40x40.svg │ ├── img_rectangle11.png │ ├── img_rectangle12.png │ ├── img_rectangle13.png │ ├── img_rectangle14.png │ ├── img_return.svg │ ├── img_search.svg │ ├── img_search_bluegray_900.svg │ ├── img_selected.png │ ├── img_slider.png │ ├── img_star1.svg │ ├── img_star1_1.svg │ ├── img_star1_15x15.svg │ ├── img_star1_2.svg │ ├── img_user.svg │ ├── img_vector1.svg │ ├── img_vector2.svg │ └── img_vuesax_bulk_people.svg ├── 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 │ ├── app_export.dart │ ├── constants │ │ └── constants.dart │ ├── errors │ │ ├── exceptions.dart │ │ └── failures.dart │ ├── network │ │ └── network_info.dart │ └── utils │ │ ├── color_constant.dart │ │ ├── date_time_utils.dart │ │ ├── image_constant.dart │ │ ├── initial_bindings.dart │ │ ├── logger.dart │ │ ├── pref_utils.dart │ │ ├── progress_dialog_utils.dart │ │ └── size_utils.dart ├── data │ ├── apiClient │ │ └── api_client.dart │ └── models │ │ └── selectionPopupModel │ │ └── selection_popup_model.dart ├── localization │ ├── app_localization.dart │ └── en_us │ │ └── en_us_translations.dart ├── main.dart ├── presentation │ ├── app_navigation_screen │ │ ├── app_navigation_screen.dart │ │ ├── binding │ │ │ └── app_navigation_binding.dart │ │ ├── controller │ │ │ └── app_navigation_controller.dart │ │ └── models │ │ │ └── app_navigation_model.dart │ ├── product_details_page_screen │ │ ├── binding │ │ │ └── product_details_page_binding.dart │ │ ├── controller │ │ │ └── product_details_page_controller.dart │ │ ├── models │ │ │ └── product_details_page_model.dart │ │ └── product_details_page_screen.dart │ ├── product_listing_page_screen │ │ ├── binding │ │ │ └── product_listing_page_binding.dart │ │ ├── controller │ │ │ └── product_listing_page_controller.dart │ │ ├── models │ │ │ └── product_listing_page_model.dart │ │ └── product_listing_page_screen.dart │ └── splash_screen │ │ ├── binding │ │ └── splash_binding.dart │ │ ├── controller │ │ └── splash_controller.dart │ │ ├── models │ │ └── splash_model.dart │ │ └── splash_screen.dart ├── routes │ └── app_routes.dart ├── theme │ ├── app_decoration.dart │ └── app_style.dart └── widgets │ ├── app_bar │ └── custom_app_bar.dart │ ├── common_image_view.dart │ ├── custom_button.dart │ ├── custom_floating_button.dart │ ├── custom_icon_button.dart │ └── custom_text_form_field.dart ├── logs └── errors.log ├── pubspec.lock ├── pubspec.yaml ├── screenshots └── screenshot.png └── test └── widget_test.dart /.flutter-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/.flutter-plugins -------------------------------------------------------------------------------- /.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/dhiwise/flutterarch/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/main/kotlin/com/dhiwise/flutterarch/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/base_project/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/main/kotlin/com/example/base_project/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/base_project_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/base_project_android.iml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/flutterarch_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/flutterarch_android.iml -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/image_not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/image_not_found.png -------------------------------------------------------------------------------- /assets/images/img_clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_clock.svg -------------------------------------------------------------------------------- /assets/images/img_favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_favorite.svg -------------------------------------------------------------------------------- /assets/images/img_heroimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_heroimage.png -------------------------------------------------------------------------------- /assets/images/img_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_image3.png -------------------------------------------------------------------------------- /assets/images/img_image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_image7.png -------------------------------------------------------------------------------- /assets/images/img_image7_278x220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_image7_278x220.png -------------------------------------------------------------------------------- /assets/images/img_image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_image8.png -------------------------------------------------------------------------------- /assets/images/img_image8_278x262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_image8_278x262.png -------------------------------------------------------------------------------- /assets/images/img_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_lock.svg -------------------------------------------------------------------------------- /assets/images/img_lock_40x40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_lock_40x40.svg -------------------------------------------------------------------------------- /assets/images/img_rectangle11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_rectangle11.png -------------------------------------------------------------------------------- /assets/images/img_rectangle12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_rectangle12.png -------------------------------------------------------------------------------- /assets/images/img_rectangle13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_rectangle13.png -------------------------------------------------------------------------------- /assets/images/img_rectangle14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_rectangle14.png -------------------------------------------------------------------------------- /assets/images/img_return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_return.svg -------------------------------------------------------------------------------- /assets/images/img_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_search.svg -------------------------------------------------------------------------------- /assets/images/img_search_bluegray_900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_search_bluegray_900.svg -------------------------------------------------------------------------------- /assets/images/img_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_selected.png -------------------------------------------------------------------------------- /assets/images/img_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_slider.png -------------------------------------------------------------------------------- /assets/images/img_star1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_star1.svg -------------------------------------------------------------------------------- /assets/images/img_star1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_star1_1.svg -------------------------------------------------------------------------------- /assets/images/img_star1_15x15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_star1_15x15.svg -------------------------------------------------------------------------------- /assets/images/img_star1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_star1_2.svg -------------------------------------------------------------------------------- /assets/images/img_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_user.svg -------------------------------------------------------------------------------- /assets/images/img_vector1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_vector1.svg -------------------------------------------------------------------------------- /assets/images/img_vector2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_vector2.svg -------------------------------------------------------------------------------- /assets/images/img_vuesax_bulk_people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/assets/images/img_vuesax_bulk_people.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/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/manishdayma/FluCommerce/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/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/manishdayma/FluCommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/core/app_export.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/app_export.dart -------------------------------------------------------------------------------- /lib/core/constants/constants.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/core/errors/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/errors/exceptions.dart -------------------------------------------------------------------------------- /lib/core/errors/failures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/errors/failures.dart -------------------------------------------------------------------------------- /lib/core/network/network_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/network/network_info.dart -------------------------------------------------------------------------------- /lib/core/utils/color_constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/color_constant.dart -------------------------------------------------------------------------------- /lib/core/utils/date_time_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/date_time_utils.dart -------------------------------------------------------------------------------- /lib/core/utils/image_constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/image_constant.dart -------------------------------------------------------------------------------- /lib/core/utils/initial_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/initial_bindings.dart -------------------------------------------------------------------------------- /lib/core/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/logger.dart -------------------------------------------------------------------------------- /lib/core/utils/pref_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/pref_utils.dart -------------------------------------------------------------------------------- /lib/core/utils/progress_dialog_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/progress_dialog_utils.dart -------------------------------------------------------------------------------- /lib/core/utils/size_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/core/utils/size_utils.dart -------------------------------------------------------------------------------- /lib/data/apiClient/api_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/data/apiClient/api_client.dart -------------------------------------------------------------------------------- /lib/data/models/selectionPopupModel/selection_popup_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/data/models/selectionPopupModel/selection_popup_model.dart -------------------------------------------------------------------------------- /lib/localization/app_localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/localization/app_localization.dart -------------------------------------------------------------------------------- /lib/localization/en_us/en_us_translations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/localization/en_us/en_us_translations.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/presentation/app_navigation_screen/app_navigation_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/app_navigation_screen/app_navigation_screen.dart -------------------------------------------------------------------------------- /lib/presentation/app_navigation_screen/binding/app_navigation_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/app_navigation_screen/binding/app_navigation_binding.dart -------------------------------------------------------------------------------- /lib/presentation/app_navigation_screen/controller/app_navigation_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/app_navigation_screen/controller/app_navigation_controller.dart -------------------------------------------------------------------------------- /lib/presentation/app_navigation_screen/models/app_navigation_model.dart: -------------------------------------------------------------------------------- 1 | class AppNavigationModel {} 2 | -------------------------------------------------------------------------------- /lib/presentation/product_details_page_screen/binding/product_details_page_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/product_details_page_screen/binding/product_details_page_binding.dart -------------------------------------------------------------------------------- /lib/presentation/product_details_page_screen/controller/product_details_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/product_details_page_screen/controller/product_details_page_controller.dart -------------------------------------------------------------------------------- /lib/presentation/product_details_page_screen/models/product_details_page_model.dart: -------------------------------------------------------------------------------- 1 | class ProductDetailsPageModel {} 2 | -------------------------------------------------------------------------------- /lib/presentation/product_details_page_screen/product_details_page_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/product_details_page_screen/product_details_page_screen.dart -------------------------------------------------------------------------------- /lib/presentation/product_listing_page_screen/binding/product_listing_page_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/product_listing_page_screen/binding/product_listing_page_binding.dart -------------------------------------------------------------------------------- /lib/presentation/product_listing_page_screen/controller/product_listing_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/product_listing_page_screen/controller/product_listing_page_controller.dart -------------------------------------------------------------------------------- /lib/presentation/product_listing_page_screen/models/product_listing_page_model.dart: -------------------------------------------------------------------------------- 1 | class ProductListingPageModel {} 2 | -------------------------------------------------------------------------------- /lib/presentation/product_listing_page_screen/product_listing_page_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/product_listing_page_screen/product_listing_page_screen.dart -------------------------------------------------------------------------------- /lib/presentation/splash_screen/binding/splash_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/splash_screen/binding/splash_binding.dart -------------------------------------------------------------------------------- /lib/presentation/splash_screen/controller/splash_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/splash_screen/controller/splash_controller.dart -------------------------------------------------------------------------------- /lib/presentation/splash_screen/models/splash_model.dart: -------------------------------------------------------------------------------- 1 | class SplashModel {} 2 | -------------------------------------------------------------------------------- /lib/presentation/splash_screen/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/presentation/splash_screen/splash_screen.dart -------------------------------------------------------------------------------- /lib/routes/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/routes/app_routes.dart -------------------------------------------------------------------------------- /lib/theme/app_decoration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/theme/app_decoration.dart -------------------------------------------------------------------------------- /lib/theme/app_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/theme/app_style.dart -------------------------------------------------------------------------------- /lib/widgets/app_bar/custom_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/widgets/app_bar/custom_app_bar.dart -------------------------------------------------------------------------------- /lib/widgets/common_image_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/widgets/common_image_view.dart -------------------------------------------------------------------------------- /lib/widgets/custom_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/widgets/custom_button.dart -------------------------------------------------------------------------------- /lib/widgets/custom_floating_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/widgets/custom_floating_button.dart -------------------------------------------------------------------------------- /lib/widgets/custom_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/widgets/custom_icon_button.dart -------------------------------------------------------------------------------- /lib/widgets/custom_text_form_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/lib/widgets/custom_text_form_field.dart -------------------------------------------------------------------------------- /logs/errors.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishdayma/FluCommerce/HEAD/test/widget_test.dart --------------------------------------------------------------------------------