Wiser-Technology-Solutions/rx_bloc
一組幫助使用響應式串流強大功能實作 BloC(業務邏輯元件)設計模式的 Flutter 套件
- Stars
- 67
- Forks
- 20
- 最近推送(UTC)
- 2026年6月5日
- 專案狀態
- 未封存
語言DartJavaKotlinRubyShellHTMLPythonBatchfileJavaScriptObjective-CSwiftMATLABLua
原始 README
以下為英文專案原文快照,最新內容請造訪 GitHub。
展開 / 收合專案 README
CI codecov style license
Overview
Set of flutter packages that make it easy to implement the BLoC Design Pattern using the power of reactive streams
Following the best practices for building robust mobile applications the architecture below can be used along with the BloC layer.
Rx Bloc Architecture
Packages
| Package | Pub |
|---|---|
| rx_bloc | pub package |
| flutter_rx_bloc | pub package |
| rx_bloc_test | pub package |
| rx_bloc_generator | pub package |
Plugins
Documentation
Samples
- Favorites Advanced - an advanced favorites app that showcase multiple software development challenges.
- Counter - an example of how to create a
CounterBlocto implement an advanced Flutter Counter app. - Division - Division sample
Articles
- Introducing rx_bloc ecosystem - Part 1 A set of Flutter packages that help implement the BloC (Business Logic Component) design pattern using the power of reactive streams.
- Introducing rx_bloc ecosystem - Part 2 Dart package that helps implementing the BLoC (Business Logic Component) Design Pattern using the power of the reactive streams.
- Introducing rx_bloc ecosystem - Part 3 Set of Flutter Widgets that expose your reactive BloCs to the UI Layer.
- Building complex apps in Flutter through the power of reactive programming - Implementing complex apps as satisfying the user expectations along with consuming a fragmented API could be challenging nowadays. Learn how you can overcome some of the most common challenges you might face.
- Building Forms in Flutter - Although building forms in Flutter may seem like an easy task, separating the business logic from the UI layer can be a challenge. The separation of concerns makes your app more scalable and maintainable and most importantly the business (validation) logic becomes unit-testable, so let’s see how we can achieve this by using rx_bloc and flutter_rx_bloc.