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

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

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!