bloc
一个可预测的状态管理库,有助于实现 BLoC(业务逻辑组件)设计模式。
打开Flutter 电子商务应用
一个可预测的状态管理库,有助于实现 BLoC(业务逻辑组件)设计模式。
Flutter 小部件,可轻松实现 BLoC(业务逻辑组件)设计模式。专为与 bloc 状态管理包一起使用而构建。
一个简单直接的服务定位器,允许将接口与具体实现解耦,并从应用程序的任何位置访问具体实现。
一个用于使用加密存储安全存储敏感数据的 Flutter 插件。
作为 Flutter 图标提供的 Font Awesome 图标包。为您的应用提供 2000 个额外图标。
一个受 Mockito 启发的模拟框架,提供用于 Fake、Mock、行为验证和存根的 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"
}
]