Current is a modern fashion eCommerce app designed for trendsetters. Shop the latest styles, explore curated collections, and enjoy a seamless shopping experience with secure payments and fast delivery. Stay ahead of fashion with Current—where style meets convenience.
Coming Soon!
current
├──android/
├──assets/
│ ├──fonts
│ ├──images
│ └──svgs
├──docs
├──ios/
├──lib/
│ ├──app/
│ │ ├──core/
│ │ │ ├──bindings/
│ │ │ │ └──_app_bindings.dart
│ │ │ ├──constants/
│ │ │ │ ├──_assets.dart
│ │ │ │ ├──_colors.dart
│ │ │ │ ├──_privacy_policy.dart
│ │ │ │ ├──_sizes.dart
│ │ │ │ └──_strings.dart
│ │ │ ├──extra/
│ │ │ │ └──_lifecycle_controller.dart
│ │ │ ├──routes/
│ │ │ │ └──_app_route.dart
│ │ │ ├──themes/
│ │ │ │ └──app_theme.dart
│ │ │ ├──utils/
│ │ │ └──widgets/
│ │ │ │ ├──_app_logo.dart
│ │ │ │ ├──_auth_data_container_decoration.dart
│ │ │ │ ├──_custom_button.dart
│ │ │ │ ├──_custom_divider.dart
│ │ │ │ ├──_custom_labeled_textfield.dart
│ │ │ │ ├──_custom_markdown_style.dart
│ │ │ │ ├──_custom_page_title.dart
│ │ │ │ ├──_custom_shimmer.dart
│ │ │ │ ├──_custom_svg_button.dart
│ │ │ │ ├──_custom_tile.dart
│ │ │ │ ├──_gradient_bg.dart
│ │ │ │ └──_page_menu_title.dart
│ │ ├──data/
│ │ │ ├──models/
│ │ │ │ ├──auth/
│ │ │ │ └──home/
│ │ │ │ │ ├──_banner_model.dart
│ │ │ │ │ └──_category_model.dart
│ │ │ └──repositories/
│ │ │ │ ├──auth/
│ │ │ │ │ ├──_login_repository.dart
│ │ │ │ │ └──_register_repository.dart
│ │ │ │ ├──hive/
│ │ │ │ │ └──_auth_opt.dart
│ │ │ │ └──home/
│ │ │ │ │ └──_home_repository.dart
│ │ ├──modules/
│ │ │ ├──account/
│ │ │ │ ├──controller/
│ │ │ │ │ └──_account_controller.dart
│ │ │ │ └──view/
│ │ │ │ │ ├──parts/
│ │ │ │ │ │ ├──_profile_data.dart
│ │ │ │ │ │ └──_profile_image.dart
│ │ │ │ │ └──_account_view.dart
│ │ │ ├──add/
│ │ │ │ └──view/
│ │ │ │ │ └──_add_to_cart_view.dart
│ │ │ ├──auth/
│ │ │ │ ├──controller/
│ │ │ │ │ ├──_login_controller.dart
│ │ │ │ │ └──_register_controller.dart
│ │ │ │ └──view/
│ │ │ │ │ ├──sections/
│ │ │ │ │ │ ├──_login_subtitle.dart
│ │ │ │ │ │ ├──_login_title.dart
│ │ │ │ │ │ ├──_logo_section.dart
│ │ │ │ │ │ ├──_privacy_policy_row.dart
│ │ │ │ │ │ ├──_register_subtitle.dart
│ │ │ │ │ │ ├──_register_title.dart
│ │ │ │ │ │ └──_remember_forgot_pass.dart
│ │ │ │ │ ├──_login_view.dart
│ │ │ │ │ └──_signup_view.dart
│ │ │ ├──categories/
│ │ │ │ └──view/
│ │ │ │ │ └──_categories_view.dart
│ │ │ ├──chat/
│ │ │ │ └──view/
│ │ │ │ │ └──_chat_view.dart
│ │ │ ├──dashboard_wrapper/
│ │ │ │ ├──controller/
│ │ │ │ │ └──_navigation_controller.dart
│ │ │ │ └──view/
│ │ │ │ │ ├──sections/
│ │ │ │ │ │ └──_bottom_navbar.dart
│ │ │ │ │ └──_dashboard_wrapper.dart
│ │ │ ├──home/
│ │ │ │ ├──controller/
│ │ │ │ │ └──_home_controller.dart
│ │ │ │ └──view/
│ │ │ │ │ ├──sections/
│ │ │ │ │ │ ├──_home_banner_slider.dart
│ │ │ │ │ │ ├──_home_categories_shimmer.dart
│ │ │ │ │ │ ├──_home_categories.dart
│ │ │ │ │ │ └──_home_searchbar.dart
│ │ │ │ │ └──_home_view.dart
│ │ │ ├──privacy_policy/
│ │ │ │ ├──controller/
│ │ │ │ │ └──_privacy_policy_controller.dart
│ │ │ │ └──view/
│ │ │ │ │ └──_privacy_policy_view.dart
│ │ │ ├──products/
│ │ │ │ ├──view/
│ │ │ │ └──_product_view.dart
│ │ │ └──splash/
│ │ │ │ ├──controller/
│ │ │ │ │ └──_splash_controller.dart
│ │ │ │ └──view/
│ │ │ │ │ └──splash_view.dart
│ │ └──_app.dart
│ ├──firebase_options.dart
│ └──main.dart
├──linux
├──macos
├──test
│ └──widget_test.dart
├──web
├──windows
├──analysis_options.yaml
├──firebase.json
├──project_structure.text
├──pubspec.lock
├──pubspec.yaml
├──README.md
├──.gitignore
└──.metadata