Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/4seer/openflutterecommerceapp
Open Flutter E-commerce App
https://github.com/4seer/openflutterecommerceapp
Last synced: 5 days ago
JSON representation
Open Flutter E-commerce App
- Host: GitHub
- URL: https://github.com/4seer/openflutterecommerceapp
- Owner: 4seer
- License: gpl-3.0
- Created: 2020-02-06T19:04:43.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-07T01:42:05.000Z (over 1 year ago)
- Last Synced: 2024-08-01T12:28:51.550Z (3 months ago)
- Language: Dart
- Size: 5.73 MB
- Stars: 821
- Watchers: 50
- Forks: 374
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- open-source-flutter-apps - Open E-Commerce App - Open Flutter Project E-commerce App by [4seer](https://github.com/4seer). (Uncategorized / Uncategorized)
README
# Open E-commerce App
Open Flutter Project E-commerce App is mobile application for e-commerce. We are building a commercially valuable product as an open-source project to make mobile technology accessible for small and medium businesses.
## The code Improvement Challenge
[Open Flutter Project: The Code Improvement Challenge](https://medium.com/@openflutterproject/open-flutter-project-the-code-improvement-challenge-ef04d9c6f716)
The idea behind the competition is to improve your Flutter development skills within a set period in a group of other enthusiasts. The challenge will last for a week when everyone can propose a code improvement for the app we build and submit it with a pull request.
**Improvements:**
1. Widgets. We have quite a few widgets to developed already that can be improved. The is an Easter Egg right in the article with a widget description. What you can do is optimize current widgets and their usage.
2. Bloc improvements. Things connected to events, states and Bloc can be revised as well. Read more on that in Flutter Bloc.
3. Flutter clean architecture implementation and improvements. You can do in this part updates for data or domain part of the app. You can find more info about Flutter’s clean architecture here.
...any other propositions on code or architecture improvements.
## Getting Started
E-commerce Mobile Application build in Flutter.
[How to contribute to E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-how-to-contribute-to-e-commerce-app-ab643996508f)
[Mobile App UI/UX](https://medium.com/@openflutterproject/open-flutter-project-e-commerce-app-fe97570a633)
[Use-cases description](https://medium.com/@openflutterproject/open-flutter-project-e-commerce-app-use-cases-and-features-6b7414a6e708)
[E-commerce App Roadmap](https://medium.com/@openflutterproject/open-flutter-project-e-commerce-app-development-roadmap-2473952aebc5)
[A short guide how to start contributing to Open Flutter Project](https://medium.com/@openflutterproject/open-flutter-project-developer-guidelines-4a4fa3fa289e)
[E-commerce Widget Library Description](https://medium.com/@openflutterproject/open-flutter-project-e-commerce-app-flutter-widgets-f63f3c33ac94)
[7 reasons for a developers to contribute to open-source projects](https://medium.com/@openflutterproject/7-reasons-for-a-developers-to-contribute-to-open-source-projects-94868870f5a1)
Functionality description and discussion
[Product Categories in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-product-categories-in-e-commerce-app-84d94117e30e)
[Product list and hashtags in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-product-list-and-hashtags-in-e-commerce-app-2c17dd339f31)
[Product filters in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-product-filters-in-e-commerce-app-ef62efcc019f)
[Product details in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-product-details-in-e-commerce-app-424b9a81fe37)
[Product Reviews in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-product-reviews-in-e-commerce-app-5feec27a560)
[Product Cart and Checkout in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-product-cart-and-checkout-in-e-commerce-app-4311dcebf7e2)
[Product details in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-product-details-in-e-commerce-app-424b9a81fe37)
[User Profile in E-commerce App](https://medium.com/@openflutterproject/open-flutter-project-user-profile-in-e-commerce-app-941b8c53a974)
[E-commerce App Mobile App Local Database Structure](https://medium.com/@openflutterproject/open-flutter-project-e-commerce-app-local-database-4744b61264c7)
## Tests
To run tests use command below:```
flutter run -t test/tests.dart
```## Linter
To check the code quality with Flutter Analyzer (recommended when you want to add something) please run in console:flutter analyze
It should give no errors message:
Analyzing openflutterecommerceapp...
No issues found! (ran in 3.5s)## IDE settings
You need to update the configuration of your IDE to tell the location of the entry point.The example for VS Code is below:
"configurations": [
{
"name": "Flutter",
"request": "launch",
"program": "lib/main.dart",
"type": "dart"
}
]