flutter_bloc_list_manager 0.5.1 flutter_bloc_list_manager: ^0.5.1 copied to clipboard
Extension to flutter_bloc that handles the underlying logic to filter and search list view data dynamically.
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased] #
[0.5.0] - 2022-01-29 #
Changed #
- Breaking: Migrated to null safety.
- Bumped
bloc
to^8.0.2
- Bumped
equatable
to^2.0.3
- Bumped
flutter_bloc
to^8.0.1
[0.4.0] - 2020-09-27 #
[0.3.1] - 2020-08-08 #
[0.3.0] - 2020-08-08 #
Changed #
- Breaking:
SearchQueryBloc
is nowSearchQueryCubit
- The
SetSearchQuery
event is now thesetQuery
method - The
ClearSearchQuery
event is now theclearQuery
method
- The
[0.2.0] - 2020-07-28 #
[0.1.5] - 2020-07-27 #
Previously released as 0.1.4+1
Changed #
- Bumped
bloc
to^6.0.0
- Bumped
flutter_bloc
to^6.0.0
- Bumped
bloc_test
to^7.0.0
- Updated testing code and added links to new documentation
- Moved over to the more accepted pre-1.0 semver designations
[0.1.4] - 2020-07-26 #
Added #
- Boolean value support for automatic filter condition generation as well as while filtering the source list via https://github.com/danahartweg/flutter_bloc_list_manager/issues/8
[0.1.3] - 2020-07-21 #
Changed #
- Bumped
bloc
to^5.0.0
- Bumped
flutter_bloc
to^5.0.0
- Bumped
bloc_test
to^6.0.0
- Updated bloc testing mechanisms to conform to the new
whenListen
behavior that also stubs the state when called: https://github.com/felangel/bloc/pull/1133