flutter_search_bar 3.0.0 flutter_search_bar: ^3.0.0 copied to clipboard
A (mostly) automatic search bar inside an AppBar for flutter
Changelog #
3.0.0 #
- Added support for dart's null-safety
- Consequently, updated dart sdk to the minimum version required for null safety
- Clear and search icons now have semantic labels for better accessibility
- An option for the keyboard input type has been added
This package is now archived and will no longer receive additional updates. The good news is that this package will continue to work fine for the foreseeable future, and is easy to fork since it is a simple (one-file) library!
2.1.0 #
- Updated dart sdk to the range currently default through flutter
- Added OnCleared callback which does as expected -- called when the user clears their input
- Explicitly disabled all borders, and fixes some flickering problems
- Some minor code improvements (remove
new
, remove some ignored files)
2.0.7 #
- Added SearchBar.onClosed handler for closing of the search bar (it doesn't fire when submitted, only cancelled)
2.0.6 #
- Updated to Dart 2
2.0.5 #
- SearchBar's app bar callback is now less strict, and allows any widget to be returned.
- Many variables are now final
- isSearching is a new property on SearchBar, and it's a ValueNotifier. Don't change the value on it yourself or things might be screwed up.
2.0.4 #
- Added SearchBar.onChanged event which can be set in search bar initialization
2.0.3 #
- SearchBar.hintText is no longer final or required so you can now assign it values after initialization (e.g. for i18n)
2.0.2 #
- Add SearchBar.isSearching property to tell whether search is currently active
2.0.1 #
- Remove a bunch of extra debug. Whoops!
- Adds support for RTL automagically using Directionality
2.0.0 #
- Add a clear button option to the search bar, which will obviously clear all text when pressed. It's greyed out when there is no text in the bar.
- Replace the named 'hideDivider' property with 'border' to support the newest version of flutter
1.0.4 #
- Add support for controller in the TextField
1.0.3 #
- Fix an issue where calling
Navigator.pop
methods insideonSubmitted
would cause a NPE and throw a really gnarly error that doesn't even print to console.
1.0.2 #
- Fix an issue where a null backgroundColor in appBar caused a white back button. Also, change to
flutter_search_bar
because I'm a genius and locked myself out ofsearch_bar
until I buy gapps forspencer@frozor.io
.
1.0.1 #
- Compile documentation, whoops.
1.0.0 #
- Initial version