blowe_bloc 0.1.6
blowe_bloc: ^0.1.6 copied to clipboard
An advanced Flutter package for state management and business logic components, extending flutter_bloc.
0.1.6 #
- Added the ability to group items in BlowePaginationListView using a custom
groupByfunction. - Introduced
BloweGroupHeaderBuilderto create custom group headers with access to the list of items in each group. - Ensured that grouped items are correctly displayed with headers and that the list remains scrollable.
- Added an assert to ensure
groupByandgroupHeaderBuilderare provided together for clearer error messages. - Updated the README.md to reflect the new version number 0.1.6.
0.1.5 #
- Added the ability to pass a custom filter function to dynamically filter items in BlowePaginationListView.
- Updated the constructor to accept an optional filter parameter.
- Applied the filter to the items before displaying them.
- Ensured that the filtering works seamlessly with the existing onRefresh functionality.
- Made BlowePaginationModel non-abstract to allow instantiation.
- Added the ability to pass an
emptyWidgetto display when the list is empty. - Wrapped the
emptyWidgetin aRefreshIndicatorto allow onRefresh functionality even when the list is empty. - Updated documentation and examples to reflect these changes.
0.1.4 #
- Added the ability to pass dynamic parameters for the
onRefreshandRetryactions inBlowePaginationListView. - Fixed issue with the last item in the list being inside a column, causing visual inconsistencies.
- Ensured the list is always scrollable, even when the items do not fill the screen, to allow for
onRefreshfunctionality.
0.1.3 #
- Update
README.mdversion
0.1.2 #
- Update
README.mdcode example
0.1.1 #
- Added an example demonstrating the usage of
blowe_blocin a Flutter application.
0.1.0 #
- Initial release of
blowe_bloc. - Added advanced BLoC components including
BloweLoadBloc,BlowePaginationBloc, andBloweWatchBloc. - Included models for handling no parameters (
BloweNoParams) and pagination (BlowePaginationModel). - Provided a variety of reactive widgets such as
BloweBlocButton,BloweBlocListener,BloweDropdownButtonFormField,BlowePaginationListView, andBloweTextFormField. - Added selector widgets
BloweBlocSelectorandBloweMultiBlocSelectorfor monitoring BLoC states.