animated_type_ahead_searchbar

Last updated:

0 purchases

animated_type_ahead_searchbar Image
animated_type_ahead_searchbar Images
Add to Cart

Description:

animated type ahead searchbar

Animated Type Ahead SearchBar #
This package merges animated searchbar and flutter typeahead to give a animated type ahead search bar.

Features #

Shows suggestions in an overlay that floats on top of other widgets
Allows you to specify what the suggestions will look like through a builder function
Allows you to specify what happens when the user taps a suggestion
Provides high customizability; you can customize the suggestion box decoration

Installation #
Please refer to these instructions
Usage #
final List searchData = const [
'Steel Pan',
'Harp',
'Cake',
'Maracas',
'Clarinet',
'Odyssey',
'Slide Whistle',
'Piano',
];

AnimatedTypeAheadSearchBar(
width: MediaQuery.of(context).size.width * 0.88,
onSuffixTap: null,
itemBuilder: (String suggestion) {
return Material(
color: Colors.white,
borderOnForeground: false,
child: Container(
padding:
const EdgeInsets.symmetric(vertical: 12, horizontal: 10),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: Text(
suggestion,
overflow: TextOverflow.visible,
),
),
],
),
),
);
},
onSuggestionSelected: (suggestion) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => Home(text: suggestion)));
FocusScope.of(context).unfocus();
},
suggestionCallback: (String pattern) {
List<String> suggestions = [];
if (pattern.length < 2) return suggestions;
for (var i = 0; i < searchData.length; i++) {
if (searchData[i]
.toLowerCase()
.contains(pattern.toLowerCase())) {
suggestions.add(searchData[i]);
}
}
return suggestions;
},
);
copied to clipboard
Shoutout to the Developers #
Huge thanks to the developers of flutter_typeahead and animated_search_bar for such amazing packages.
Future #
Many optional parameters of flutter_typeahead and animated_search_bar are not exposed currently to the user.
I plan to do so the users can use these packages at their full potential.
Contribution #
If you want to contibute please visit the github repository.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.