https://github.com/kaiumallimon/current
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.
https://github.com/kaiumallimon/current
bkash cross-platform ecommerce firebase firebase-auth firestore-database flutter getx payment-gateway
Last synced: 3 months ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/kaiumallimon/current
- Owner: kaiumallimon
- Created: 2025-02-16T17:57:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-20T21:46:04.000Z (over 1 year ago)
- Last Synced: 2025-07-07T14:59:26.293Z (about 1 year ago)
- Topics: bkash, cross-platform, ecommerce, firebase, firebase-auth, firestore-database, flutter, getx, payment-gateway
- Language: Dart
- Homepage:
- Size: 509 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Current
===
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.
### Features
```
Coming Soon!
```
### Project Strucutre
```bash
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
```
### Author
[Kaium Al Limon](https://www.facebook.com/lemon.exee)