good_search_appbar

Last updated:

0 purchases

good_search_appbar Image
good_search_appbar Images
Add to Cart

Description:

good search appbar

Good Search AppBar #
AppBar with Animation SearchBar.
Preview #
https://github.com/ZianFahrudy/GoodSearchAppBar/assets/45583824/872a818e-c3bb-4d48-8abf-20c6aab4cd48
Installation #
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
...
good_search_appbar: ^0.0.2
copied to clipboard
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'),
),
);
}
}

copied to clipboard
Atribut #

Issues & Suggestions #
If you encounter any issue you or want to leave a suggestion you can do it by filling an issue.
Thank you for the support! #

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.