Skip to content

ZianFahrudy/GoodSearchAppBar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!