dropdown_plus_bloc 0.1.3
dropdown_plus_bloc: ^0.1.3 copied to clipboard
Customizable Flutter dropdowns with BLoC/Cubit integration: searchable single-select and multi-select with chips, offline caching, and theming.
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.
0.1.2 - 2026-03-15 #
Added #
- Added
DropdownPlusThemeStylepreset enum (material,minimal,rounded,outlined,dark,compact) for out-of-the-box themed dropdown UIs - Added
DropdownPlusThemePresets.forStyle(...)helper to resolve preset themes programmatically - Added
themeStyleparameter to bothSearchableDropdownPlusandMultiSelectDropdownPlus - Exported
dropdown_plus_theme_style.dartfrom the package entry library - Updated README with preset theme style usage and API docs
Fixed #
- Fixed compact-mode bottom overflow in
MultiSelectDropdownPlusby constraining open panel height to available parent space
0.1.3 - 2026-03-15 #
Fixed #
- Fixed
flutter_blocdowngrade/analysis compatibility by removing theStateStreamableSourcetype constraint from dropdown widgets.
0.1.0 - 2025-01-01 #
Added #
- Initial release
SearchableDropdownPlus— single-select searchable dropdown with BLoC integrationMultiSelectDropdownPlus— multi-select dropdown with chip display and BLoC integrationDropdownPlusTheme— full visual customisation for all widget propertiesDropdownItem<T>— generic model for dropdown items- Plain
StatefulWidgetimplementation — noflutter_hooksdependency - Offline caching with client-side fallback filtering
- Controlled-mode support via
selectedValue/selectedItemsprops - Animated open/close transitions and arrow rotation
- "Select All" / "Clear All" multi-select header
- Overflow chip badge (
+N more) for multi-select trigger - Custom
itemBuilder,selectedValueBuilder,selectedItemBuilderhooks checkInternetConnectioncallback for custom connectivity detection