AnimatedSearchBar

A Beautiful and Simple SearchBar widget with animation transition. It can be fully customized with label, labelStyle, searchDecoration, etc. It also maintains onChange state.
Getting Started
In the pubspec.yaml
of your flutter project, add the following dependency:
... animated_search_bar: "^latest_version"
Usage Examples
String searchText="";
AnimatedSearchBar(
label: "Search Something Here",
onChanged: (value) {
print("value on Change");
setState(() {
searchText = value;
});
}, ),
Available Parameters
Param | isRequired |
---|---|
String label | No |
Function(String) onChanged | No |
TextStyle labelStyle | No |
InputDecoration searchDecoration | No |
int animationDuration in milliseconds | No |
TextStyle searchStyle | No |
Color cursorColor | No |
Duration duration , debouncer duration default 300ms | No |