bloc
一個可預測的狀態管理庫,有助於實現 BLoC(業務邏輯元件)設計模式。
打開Flutter 電商應用程式
一個可預測的狀態管理庫,有助於實現 BLoC(業務邏輯元件)設計模式。
Flutter 小部件,可輕鬆實作 BLoC(業務邏輯元件)設計模式。專為與 bloc 狀態管理套件搭配使用而打造。
一個簡單直接的服務定位器,可將介面與具體實作分離,並從應用程式的任何地方存取具體實作。
一個用於使用加密儲存安全儲存敏感資料的 Flutter 外掛。
作為 Flutter 圖標提供的 Font Awesome 圖標套件。為您的應用提供 2000 個額外圖標。
一個受到 Mockito 啟發的模擬框架,提供用於 Fake、Mock、行為驗證和 Stubbing 的 API。
v4.1.0Flutter Translate 是一個功能齊全的 Flutter 本地化/國際化(i18n)程式庫。
v0.1.6一個 Flutter 庫,可為 TabBar 的標籤指示器添加氣泡效果。
{"sdk":"flutter"}{"sdk":"flutter"}^4.2.1^0.22.0^3.0.1^9.1.0^7.2.0^0.13.3^0.17.0^1.8.0^0.27.2^7.2.1^7.3.0^0.1.6^1.0.3^2.0.3^2.0.0+4^1.11.1{"sdk":"flutter"}^5.0.16以下為英文專案原文快照,最新內容請造訪 GitHub。
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.
Open Flutter Project: The Code Improvement Challenge
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:
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.
Bloc improvements. Things connected to events, states and Bloc can be revised as well. Read more on that in Flutter Bloc.
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.
E-commerce Mobile Application build in Flutter.
How to contribute to E-commerce App
A short guide how to start contributing to Open Flutter Project
E-commerce Widget Library Description
7 reasons for a developers to contribute to open-source projects
Functionality description and discussion
Product Categories in E-commerce App
Product list and hashtags in E-commerce App
Product filters in E-commerce App
Product details in E-commerce App
Product Reviews in E-commerce App
Product Cart and Checkout in E-commerce App
Product details in E-commerce App
User Profile in E-commerce App
E-commerce App Mobile App Local Database Structure
To run tests use command below:
flutter run -t test/tests.dart
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)
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"
}
]