Wiser-Technology-Solutions/rx_bloc
반응형 스트림의 힘을 활용하여 BloC(Business Logic Component) 디자인 패턴을 구현하는 데 도움을 주는 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.