good_search_appbar 0.0.4
good_search_appbar: ^0.0.4 copied to clipboard
AppBar widget with simple animation searching for Flutter
Good Search AppBar #
AppBar with Animation SearchBar.
Preview #
Installation #
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
...
good_search_appbar: ^0.0.2
Basic example #
class SearchPage extends StatelessWidget {
const SearchPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: GoodSearchAppBar(
title: 'Search',
onSearchChanged: (query) {
log(query);
},
),
body: const Center(
child: Text('Search Page'),
),
);
}
}
Atribut #
Issues & Suggestions #
If you encounter any issue you or want to leave a suggestion you can do it by filling an issue.