├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── shokhrukhbek │ │ │ │ ├── desktop │ │ │ │ └── MainActivity.kt │ │ │ │ └── nectar │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── png │ ├── fail.png │ ├── icon.png │ ├── mask.png │ └── onboarding.png └── svg │ ├── about.svg │ ├── carrot.svg │ ├── cart.svg │ ├── delivery-address.svg │ ├── edit.svg │ ├── explore.svg │ ├── facebook.svg │ ├── favorite.svg │ ├── filter.svg │ ├── google.svg │ ├── help.svg │ ├── location.svg │ ├── logout.svg │ ├── my-details.svg │ ├── notification.svg │ ├── orders.svg │ ├── payment.svg │ ├── promo-code.svg │ ├── search.svg │ ├── select-location.svg │ ├── share.svg │ ├── shop.svg │ ├── success.svg │ └── user.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-50x50@1x.png │ │ │ ├── Icon-App-50x50@2x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.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 └── RunnerTests │ └── RunnerTests.swift ├── lib ├── firebase_options.dart ├── main.dart └── src │ ├── app.dart │ ├── bloc │ ├── account │ │ ├── account_bloc.dart │ │ ├── account_event.dart │ │ └── account_state.dart │ ├── category_products │ │ ├── category_products_bloc.dart │ │ ├── category_products_event.dart │ │ └── category_products_state.dart │ ├── explore │ │ ├── explore_bloc.dart │ │ ├── explore_event.dart │ │ └── explore_state.dart │ ├── favorites │ │ ├── favorites_bloc.dart │ │ ├── favorites_event.dart │ │ └── favorites_state.dart │ ├── forgot_password │ │ ├── forgot_password_bloc.dart │ │ ├── forgot_password_event.dart │ │ └── forgot_password_state.dart │ ├── login │ │ ├── login_bloc.dart │ │ ├── login_event.dart │ │ └── login_state.dart │ ├── product │ │ ├── product_bloc.dart │ │ ├── product_event.dart │ │ └── product_state.dart │ ├── register │ │ ├── register_bloc.dart │ │ ├── register_event.dart │ │ └── register_state.dart │ ├── register_phone │ │ ├── register_phone_bloc.dart │ │ ├── register_phone_event.dart │ │ └── register_phone_state.dart │ ├── search │ │ ├── search_bloc.dart │ │ ├── search_event.dart │ │ └── search_state.dart │ ├── shop │ │ ├── shop_bloc.dart │ │ ├── shop_event.dart │ │ └── shop_state.dart │ ├── store_details │ │ ├── store_details_bloc.dart │ │ ├── store_details_event.dart │ │ └── store_details_state.dart │ └── stores │ │ ├── stores_bloc.dart │ │ ├── stores_event.dart │ │ └── stores_state.dart │ ├── data │ ├── enums │ │ ├── delivery_method.dart │ │ ├── payment_method.dart │ │ └── unit.dart │ ├── models │ │ ├── address.dart │ │ ├── category.dart │ │ ├── order.dart │ │ ├── order_product.dart │ │ ├── product.dart │ │ ├── promo_code.dart │ │ ├── review.dart │ │ ├── store.dart │ │ └── user.dart │ ├── repositories │ │ ├── explore_repository.dart │ │ ├── favorites_repository.dart │ │ ├── login_repository.dart │ │ ├── product_repository.dart │ │ ├── products_repository.dart │ │ ├── register_phone_repository.dart │ │ ├── register_repository.dart │ │ ├── search_repository.dart │ │ ├── shop_repository.dart │ │ ├── store_details_repository.dart │ │ └── stores_repository.dart │ └── services │ │ ├── auth_service.dart │ │ ├── firebase_firestore_service.dart │ │ ├── firebase_storage_service.dart │ │ ├── geoservices.dart │ │ └── hive_adapters.dart │ └── presentation │ ├── pages │ ├── account │ │ ├── about_page.dart │ │ ├── account_page.dart │ │ ├── help_page.dart │ │ ├── my_details_page.dart │ │ ├── notifications_page.dart │ │ ├── payment_methods_page.dart │ │ └── promo_codes_page.dart │ ├── auth │ │ ├── forgot_password_page.dart │ │ ├── login_page.dart │ │ ├── onboarding_page.dart │ │ ├── register_page.dart │ │ ├── register_phone_page.dart │ │ └── verification_page.dart │ ├── explore │ │ ├── category_products_page.dart │ │ ├── explore_page.dart │ │ ├── product_details_page.dart │ │ ├── search_page.dart │ │ ├── store_details_page.dart │ │ └── stores_page.dart │ ├── home │ │ ├── favorites_page.dart │ │ ├── home_page.dart │ │ └── shop_page.dart │ ├── map │ │ ├── select_location_page.dart │ │ └── set_location_map_page.dart │ ├── order │ │ ├── cart_page.dart │ │ ├── order_success_page.dart │ │ └── orders_page.dart │ └── splash_page.dart │ ├── utils │ ├── app_colors.dart │ ├── app_router.dart │ ├── assets.dart │ ├── extensions.dart │ └── helpers.dart │ └── widgets │ ├── buttons │ ├── default_button.dart │ ├── next_fab.dart │ └── round_button.dart │ ├── cards │ ├── category_card.dart │ ├── product_card.dart │ └── store_card.dart │ └── textfields │ └── search_text_field.dart ├── pubspec.lock ├── pubspec.yaml └── screenshots ├── about.jpg ├── account.jpg ├── cart.jpg ├── category.jpg ├── explore.jpg ├── favorites.jpg ├── forgot-password.jpg ├── help.jpg ├── home.jpg ├── my-details.jpg ├── notifications.jpg ├── onboarding.jpg ├── order-details.jpg ├── orders.jpg ├── payment-methods.jpg ├── product-details.jpg ├── promo-codes.jpg ├── register-phone-dialog.jpg ├── register-phone.jpg ├── select-location.jpg ├── set-location.jpg ├── signin.jpg ├── signup.jpg ├── splash.jpg ├── store-details.jpg ├── stores.jpg ├── update-location.jpg └── verification.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/shokhrukhbek/desktop/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/kotlin/com/shokhrukhbek/desktop/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/shokhrukhbek/nectar/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/kotlin/com/shokhrukhbek/nectar/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/png/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/png/fail.png -------------------------------------------------------------------------------- /assets/png/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/png/icon.png -------------------------------------------------------------------------------- /assets/png/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/png/mask.png -------------------------------------------------------------------------------- /assets/png/onboarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/png/onboarding.png -------------------------------------------------------------------------------- /assets/svg/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/about.svg -------------------------------------------------------------------------------- /assets/svg/carrot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/carrot.svg -------------------------------------------------------------------------------- /assets/svg/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/cart.svg -------------------------------------------------------------------------------- /assets/svg/delivery-address.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/delivery-address.svg -------------------------------------------------------------------------------- /assets/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/edit.svg -------------------------------------------------------------------------------- /assets/svg/explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/explore.svg -------------------------------------------------------------------------------- /assets/svg/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/facebook.svg -------------------------------------------------------------------------------- /assets/svg/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/favorite.svg -------------------------------------------------------------------------------- /assets/svg/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/filter.svg -------------------------------------------------------------------------------- /assets/svg/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/google.svg -------------------------------------------------------------------------------- /assets/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/help.svg -------------------------------------------------------------------------------- /assets/svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/location.svg -------------------------------------------------------------------------------- /assets/svg/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/logout.svg -------------------------------------------------------------------------------- /assets/svg/my-details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/my-details.svg -------------------------------------------------------------------------------- /assets/svg/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/notification.svg -------------------------------------------------------------------------------- /assets/svg/orders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/orders.svg -------------------------------------------------------------------------------- /assets/svg/payment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/payment.svg -------------------------------------------------------------------------------- /assets/svg/promo-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/promo-code.svg -------------------------------------------------------------------------------- /assets/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/search.svg -------------------------------------------------------------------------------- /assets/svg/select-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/select-location.svg -------------------------------------------------------------------------------- /assets/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/share.svg -------------------------------------------------------------------------------- /assets/svg/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/shop.svg -------------------------------------------------------------------------------- /assets/svg/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/success.svg -------------------------------------------------------------------------------- /assets/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/assets/svg/user.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/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/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/app.dart -------------------------------------------------------------------------------- /lib/src/bloc/account/account_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/account/account_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/account/account_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/account/account_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/account/account_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/account/account_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/category_products/category_products_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/category_products/category_products_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/category_products/category_products_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/category_products/category_products_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/category_products/category_products_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/category_products/category_products_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/explore/explore_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/explore/explore_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/explore/explore_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/explore/explore_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/explore/explore_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/explore/explore_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/favorites/favorites_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/favorites/favorites_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/favorites/favorites_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/favorites/favorites_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/favorites/favorites_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/favorites/favorites_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/forgot_password/forgot_password_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/forgot_password/forgot_password_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/forgot_password/forgot_password_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/forgot_password/forgot_password_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/forgot_password/forgot_password_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/forgot_password/forgot_password_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/login/login_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/login/login_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/login/login_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/login/login_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/login/login_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/login/login_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/product/product_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/product/product_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/product/product_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/product/product_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/product/product_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/product/product_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/register/register_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/register/register_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/register/register_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/register/register_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/register/register_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/register/register_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/register_phone/register_phone_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/register_phone/register_phone_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/register_phone/register_phone_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/register_phone/register_phone_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/register_phone/register_phone_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/register_phone/register_phone_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/search/search_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/search/search_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/search/search_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/search/search_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/search/search_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/search/search_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/shop/shop_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/shop/shop_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/shop/shop_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/shop/shop_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/shop/shop_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/shop/shop_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/store_details/store_details_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/store_details/store_details_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/store_details/store_details_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/store_details/store_details_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/store_details/store_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/store_details/store_details_state.dart -------------------------------------------------------------------------------- /lib/src/bloc/stores/stores_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/stores/stores_bloc.dart -------------------------------------------------------------------------------- /lib/src/bloc/stores/stores_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/stores/stores_event.dart -------------------------------------------------------------------------------- /lib/src/bloc/stores/stores_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/bloc/stores/stores_state.dart -------------------------------------------------------------------------------- /lib/src/data/enums/delivery_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/enums/delivery_method.dart -------------------------------------------------------------------------------- /lib/src/data/enums/payment_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/enums/payment_method.dart -------------------------------------------------------------------------------- /lib/src/data/enums/unit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/enums/unit.dart -------------------------------------------------------------------------------- /lib/src/data/models/address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/address.dart -------------------------------------------------------------------------------- /lib/src/data/models/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/category.dart -------------------------------------------------------------------------------- /lib/src/data/models/order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/order.dart -------------------------------------------------------------------------------- /lib/src/data/models/order_product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/order_product.dart -------------------------------------------------------------------------------- /lib/src/data/models/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/product.dart -------------------------------------------------------------------------------- /lib/src/data/models/promo_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/promo_code.dart -------------------------------------------------------------------------------- /lib/src/data/models/review.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/review.dart -------------------------------------------------------------------------------- /lib/src/data/models/store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/store.dart -------------------------------------------------------------------------------- /lib/src/data/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/models/user.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/explore_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/explore_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/favorites_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/favorites_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/login_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/login_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/product_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/product_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/products_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/products_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/register_phone_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/register_phone_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/register_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/register_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/search_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/search_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/shop_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/shop_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/store_details_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/store_details_repository.dart -------------------------------------------------------------------------------- /lib/src/data/repositories/stores_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/repositories/stores_repository.dart -------------------------------------------------------------------------------- /lib/src/data/services/auth_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/services/auth_service.dart -------------------------------------------------------------------------------- /lib/src/data/services/firebase_firestore_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/services/firebase_firestore_service.dart -------------------------------------------------------------------------------- /lib/src/data/services/firebase_storage_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/services/firebase_storage_service.dart -------------------------------------------------------------------------------- /lib/src/data/services/geoservices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/services/geoservices.dart -------------------------------------------------------------------------------- /lib/src/data/services/hive_adapters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/data/services/hive_adapters.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/account/about_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/account/about_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/account/account_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/account/account_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/account/help_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/account/help_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/account/my_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/account/my_details_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/account/notifications_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/account/notifications_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/account/payment_methods_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/account/payment_methods_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/account/promo_codes_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/account/promo_codes_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/auth/forgot_password_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/auth/forgot_password_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/auth/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/auth/login_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/auth/onboarding_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/auth/onboarding_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/auth/register_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/auth/register_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/auth/register_phone_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/auth/register_phone_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/auth/verification_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/auth/verification_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/explore/category_products_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/explore/category_products_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/explore/explore_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/explore/explore_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/explore/product_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/explore/product_details_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/explore/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/explore/search_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/explore/store_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/explore/store_details_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/explore/stores_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/explore/stores_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/home/favorites_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/home/favorites_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/home/home_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/home/shop_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/home/shop_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/map/select_location_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/map/select_location_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/map/set_location_map_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/map/set_location_map_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/order/cart_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/order/cart_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/order/order_success_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/order/order_success_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/order/orders_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/order/orders_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/pages/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/pages/splash_page.dart -------------------------------------------------------------------------------- /lib/src/presentation/utils/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/utils/app_colors.dart -------------------------------------------------------------------------------- /lib/src/presentation/utils/app_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/utils/app_router.dart -------------------------------------------------------------------------------- /lib/src/presentation/utils/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/utils/assets.dart -------------------------------------------------------------------------------- /lib/src/presentation/utils/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/utils/extensions.dart -------------------------------------------------------------------------------- /lib/src/presentation/utils/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/utils/helpers.dart -------------------------------------------------------------------------------- /lib/src/presentation/widgets/buttons/default_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/widgets/buttons/default_button.dart -------------------------------------------------------------------------------- /lib/src/presentation/widgets/buttons/next_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/widgets/buttons/next_fab.dart -------------------------------------------------------------------------------- /lib/src/presentation/widgets/buttons/round_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/widgets/buttons/round_button.dart -------------------------------------------------------------------------------- /lib/src/presentation/widgets/cards/category_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/widgets/cards/category_card.dart -------------------------------------------------------------------------------- /lib/src/presentation/widgets/cards/product_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/widgets/cards/product_card.dart -------------------------------------------------------------------------------- /lib/src/presentation/widgets/cards/store_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/widgets/cards/store_card.dart -------------------------------------------------------------------------------- /lib/src/presentation/widgets/textfields/search_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/lib/src/presentation/widgets/textfields/search_text_field.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/about.jpg -------------------------------------------------------------------------------- /screenshots/account.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/account.jpg -------------------------------------------------------------------------------- /screenshots/cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/cart.jpg -------------------------------------------------------------------------------- /screenshots/category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/category.jpg -------------------------------------------------------------------------------- /screenshots/explore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/explore.jpg -------------------------------------------------------------------------------- /screenshots/favorites.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/favorites.jpg -------------------------------------------------------------------------------- /screenshots/forgot-password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/forgot-password.jpg -------------------------------------------------------------------------------- /screenshots/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/help.jpg -------------------------------------------------------------------------------- /screenshots/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/home.jpg -------------------------------------------------------------------------------- /screenshots/my-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/my-details.jpg -------------------------------------------------------------------------------- /screenshots/notifications.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/notifications.jpg -------------------------------------------------------------------------------- /screenshots/onboarding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/onboarding.jpg -------------------------------------------------------------------------------- /screenshots/order-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/order-details.jpg -------------------------------------------------------------------------------- /screenshots/orders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/orders.jpg -------------------------------------------------------------------------------- /screenshots/payment-methods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/payment-methods.jpg -------------------------------------------------------------------------------- /screenshots/product-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/product-details.jpg -------------------------------------------------------------------------------- /screenshots/promo-codes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/promo-codes.jpg -------------------------------------------------------------------------------- /screenshots/register-phone-dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/register-phone-dialog.jpg -------------------------------------------------------------------------------- /screenshots/register-phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/register-phone.jpg -------------------------------------------------------------------------------- /screenshots/select-location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/select-location.jpg -------------------------------------------------------------------------------- /screenshots/set-location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/set-location.jpg -------------------------------------------------------------------------------- /screenshots/signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/signin.jpg -------------------------------------------------------------------------------- /screenshots/signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/signup.jpg -------------------------------------------------------------------------------- /screenshots/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/splash.jpg -------------------------------------------------------------------------------- /screenshots/store-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/store-details.jpg -------------------------------------------------------------------------------- /screenshots/stores.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/stores.jpg -------------------------------------------------------------------------------- /screenshots/update-location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/update-location.jpg -------------------------------------------------------------------------------- /screenshots/verification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShokhrukhbekYuldoshev/Nectar/HEAD/screenshots/verification.jpg --------------------------------------------------------------------------------