-
-
Add adaptive platform Ui feature:
Material
,Cupertino
andAdaptive
-
Add
autocomplete
new popup mode -
add
transitionBuilder
,transitionDuration
,reverseTransitionDuration
tomenuProps
transitionDuration: Duration(milliseconds: 500), transitionBuilder: (context, animation, secondaryAnimation, child) { return SlideTransition( position: Tween<Offset>( begin: const Offset(1, 0), end: Offset.zero, ).animate(animation), child: child, ); }
-
add new property
animationBuilder
toDropdownButtonProps
, examples of uses
/* Example 1: animation with only one icon ("iconClosed") like rotation */ animationBuilder: (child, isOpen) { return AnimatedRotation( turns: isOpen ? .5 : 0, duration: Duration(milliseconds: 400), child: child, ); }
/* Example 2 : animation with two icons like switch */ dropdownButtonProps: DropdownButtonProps( iconClosed: Icon(Icons.arrow_drop_down), iconOpened: Icon(Icons.arrow_drop_up), animationBuilder: (child, isOpen) { return AnimatedSwitcher( switchOutCurve: Curves.easeIn, switchInCurve: Curves.easeIn, duration: Duration(milliseconds: 400), child: child, ); }, )
- add
SuggestionsProps
topopupProps
- add
builder
property forSuggestionsProps
to override the hole suggestion widget - add properties to
scrollView
andwrap
widget for selected items in multiSelection mode Chips
are fully customizable in multiSelection and suggestions- replace
padding
insearchFieldProps
withcontainerBuilder
- add
onDisplayed
callback topopupProps
- add
errorBuilder
forInfiniteScrollProps
- add possibility to reload item using
myGlobalKey.currentState?.reloadItems(String filter)
ormyGlobalKey.currentState?.loadMoreItems(String filter, int skip)
-
-
- change
onChanged
toonSelected
PopupPropsMultiSelection
changed toMultiSelectionPopupProps
suggestedItemsProps
is placed insideSuggestionsProps
Semantics
is removed from searchBox, to add it usecontainerBuilder
like this you have full access to Semantic properties.
- change
-
BottomSheet
background color 726
-
- add
Semantics
to searchBox to support voiceOver/TalkBack ...
- add
-
- infinite list / lazy loading
- add click properties to the dropdown
- add custom mode
- dropdown button can be changed depending on state (opened/closed)
- add property
cacheItems
for popupProps - add property
onItemLoaded
- adding new properties for a lot of widget (scrollBar, modal, bottomSheet,...)
- add to possibility to change position of
clearButton
anddropdownButton
usingdirection
property
-
AsyncItems
anditems
are replaced byitems:(filter, infiniteScrollProps)
- Add
isDisabled
toitemBuilder
params FavoriteItems
renamed toSuggestedItems
isFilterOnline
renamed todisableFilter
selectionWidget
renamed tocheckBoxBuilder
dropdownDecoratorProps
renamed todecoratorProps
clearButtonProps
anddropdownButtonProps
are placed tosuffixProps
-
Fix bugs
-
fix lint errors
-
add 'textDirection' in multiSelection mode to handle checkbox alignment
-
add useSafeArea for modal
-
Fix analysis warning and formatting issues
- Fix bugs: 510, 439, 513, 514
- add new properties to dropdownButton and clearDropdownButton: 'style', 'isSelected', ' selectedIcon', 'onPressed'
- Fix bugs
- update Readme file
- add
interceptCallBacks
for popupProps
- Fix code format
- Replace ScrollBar with RawScrollBar (adding new properties)
- move
showClearButton
intoClearButtonProps
- move all dropdownDecoration props into
dropdownDecoratorProps
- replace
IconButtonProps
with DropdownButtonProps andClearButtonProps
forclearButtonProps
and dropdownButtonProps - add a full custom container for the pop
containerBuilder
topopup_props
- add
isVisible
prop toDropdownButtonProps
- change
validationMultiSelectionWidget
tovalidationWidgetBuilder
- fix fit issue in single Selection mode
- fix isOnlineFilter issue
-
Breaking changes:
- onFind to AsyncItem
- isFilteredOnline to isFilterOnline
- replace all popup customization with popupProps
- change default mode to MENU
- remove 'dropdownBuilderSupportsNullItem' because now we support nullSafety
- remove safeArea settings, the popup should always shown in safeArea
-
update readme.md
-
improve menu mode
-
improve dialog mode
-
fix large text in chips in multiSelection mode
-
fix bug 84
-
add new mode BOTTOM_SHEET
-
support Flutter v3
- breaking changes:
- remove
hint
andlabel
properties, usedropdownSearchDecoration
instead - remove
showAsSuffixIcons
property, now always are as suffixIcon - replace '
clearButtonSplashRadius
' and 'clearButtonBuilder
' into one property 'IconButtonProps
' - replace '
dropdownButtonSplashRadius
' and 'dropdownButtonBuilder
' into one property 'IconButtonProps
'
- remove
- fix issue 380
- improve performance
- add "popupCustomMultiSelectionWidget" option
- fix bug 284
- breaking changes
- add "isSelected" option to FavoriteItemsBuilder
- change onChange to onChanged in multiSelection mode
- fix some bugs
- new feature : change searchBox query programmatically using EditTextController
- fix some bugs
- new feature : multiSelection mode
- breaking changes :
-
searchBoxDecoration removed: replaced by searchFieldProps _ autoFocusSearchBox removed : replaced by searchFieldProps _ searchBoxStyle removed : replaced by searchFieldProps _ searchBoxController removed : replaced by searchFieldProps
- showSelectedItem replaced by showSelectedItems
-
- fix analyser issues
- prop that passes all props to search field
- fix issues 169
- fix issues 163
- new Feature "dropdown BaseStyle" 178
- new Feature "popup scrollView"
- Ignore pointers in itemBuilder & cursor in web
- Added property to customize DropdownButton Splash Radius
- added property to set up the splash radius for clear button and for dropdown button in dropdown_search
- @thanks Vasiliy
- added property to set up the popup safe area
- fixed
null safety
issues
- fixed
null safety
issues after initial migration - migrated example to
null safety
- allowed
http
traffic for Android to make async requests work
- fix bug filterOnline #116
- Add onBeforeChange CallBack @thanks Vasiliy
- Add onPopupDismiss CallBack @thanks Vasiliy
- search delay feature @thanks Vasiliy
- BottomSheet scrolling behavior improvement @thanks Vasiliy
- fix bug update selectedItem
- added an ability to override the clear and dropdown icon buttons with builder
suffixIcons
adds an ability to switch icon management through thesuffixIcon
ofInputDecoration
- fix bug caused by last flutter SDK breaking changes #69
- Add a getter for the selected item
- Add a getter to check if the DropDownSearch is focused or not
- fix bug default selectedItem #56
- Invoke the dropdown programmatically
- change dropdownSearch selected value programmatically
- fix issue #25
- fix issue #36
- fix issue #51
- fix issue #55
- replace autoValidate by autoValidateMode
- pass searchWord to loadingBuilder/emptyBuilder/errorBuilder
- add searchBoxController to be used as default filter for example
- fix bug
- remove
dropDownSearchDecoration
duplication - add
popupBarrierColor
feature
- add
popupItemDisabled
feature, to manage popupItems accessibility
- handle dark and light theme
- handle dropdownBuilder if item is Null
- add dropdown icon customization
- add clear button icon customization
- manage default border color
- fix issue: default selected item
- update description
- update description
- fix issue
- Integrate material design
- make DropdownSearch as item of a form
- manage validation form
- fix bug error widget
- add autoFocus searchBox feature
- fix bug: filter items
- fix menu mode background color
- fix bug: empty items online
- emptyBuilder
- loadingBuilder
- errorBuilder
- improve Menu mode
- improve bottomSheet mode
- minor improvement
- minor improvement
- Health suggestions
- Add showSelected option
- Improve performance
- Improve performance
- BugFix
- BugFix
- Update README.md
- Update README.md
- Add catch error
- Add Feature : Filter Function as parameter
- Add Feature : enable/disable
- Add Feature : add three mode : Menu, BottomSheet and Dialog
- Add Feature : manageable height
- Bug fix
- Bug fix
- Replace Stream by valueNotifier
- Replace Stream by valueNotifier
- possibility to load filter online once
- improve performance
- bloc bug fix
- bug fix publication
- First publication