- Addresses Issue 92: Add
onSaved
callback to SearchField - Addresses Issue 90 Update Docs to clarify Alignment of suggestions
- Fix Regressed Issue: maheshj01#83
- Fix static analysis issue
- Fixed: Overlay was not updated when the dependency changed.
- Fix: Issue #81 adds padding property to
SuggestionDecoration
.
- Fix: Issue #78 Adds
onSearchTextChanged
callback to get the search text on every change. - Deprecate
comparator
property, useonSearchTextChanged
instead.
- Fix Issue 77 Add TextCapitalization property to SearchField.
- Fix Issue: 76 Overlay not getting closed on Route pop.
- Add 'readOnly' property to disable editing
- [BREAKING] Issue 58: Removes
hasOverlay
property, now suggestions are always shown as an overlay - Fixes: SearchField Cannot be wrapped with Center Issue 57
-
Hot Fix: maheshj01#70 OnSuggestionTap broke in flutter 3.7 for non mobile platforms see: flutter/flutter#119390
-
[BREAKING] Adds Scrollbar for suggestions (Requires flutter stable 3.7 or greater.)
- Add
comparator
property to filter out the suggestions with a custom logic. - Fixes #69
- Add
enabled
property see #65
- Add
suggestionDirection
property to position the suggestions.
- Fixes #43
- Add
offset
property to position the suggestions.
- Add
suggestionStyle
to style default suggestions.
- Fix widget not mounted error on Deactivate
- Fixes issue #39
- Add
autoCorrect
andinputFormatter
property - Fix suggestionState for
hasOverlay:false
- Fixes runtime warning in flutter 3 Issue #29
- Fixes Issue #25
- Fixes issue #20
- renamed property
onTap
toonSuggestionTap
- Adds
focusNode
andonSubmit
parameters to SearchField
- Add support for empty widget
- Add support for changing inputType
- update version in readme
- pass generic object to
SearchfieldListItem
- add custom widget for Suggestions using
SearchFieldListItem
- removes
suggestionStyle
property - minor fixes
- adds
suggestionAction
to change focus on suggestion tap - suggestions now always show on
SuggestionState.enabled
- adds
searchInputAction
property to focus to next input
- renamed property to
SuggestionType
toSuggestionState
- Adds
SuggestionType
enum to show/hide suggestion on focus - Update example
- Add overlay example
- Update readme
- Updated docs
- Adds support for overlays
- suggestions are lazily loaded on demand
- Adds animation to suggestions
- Fix a small bug
- Adds support for validator to add custom validations
- Support for controller to interact with the SearchField
- update Docs
- support to change the height of each suggestionItem.
- Can now define max number of suggestions visible in the viewport.
- Customizable Search Input Decoration like the built in textfield.
- decorate the Suggestions List with color or gradient.
- Initial Release.
- supports sound null safety
- docs: minor documentation fixes and improvements