good_search_appbar 0.0.4 copy "good_search_appbar: ^0.0.4" to clipboard
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 #

goodsearchappbar

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! #

1
likes
150
points
12
downloads

Publisher

verified publisherzianfahrudy.my.id

Weekly Downloads

AppBar widget with simple animation searching for Flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on good_search_appbar