search_app_bar 1.0.1 copy "search_app_bar: ^1.0.1" to clipboard
search_app_bar: ^1.0.1 copied to clipboard

outdated

A new Flutter package project.

search_app_bar #

An animated SearchAppBar Widget, to be used with Flutter.

Usage #

Simply use the SearchAppBar widget, included in this package, where you would use a regular AppBar:

Scaffold(
  appBar: SearchAppBar(
    title: Text(title),
    searcher: bloc,
  ),
  body: // Insert body here
);

The only required attribute in this widget is searcher. Here, you should pass an instance of a class that uses Searcher as a mixin. Like this one:

class HomeBloc with Searcher {
    // ...
}

A functional example can be found at: https://github.com/rodolfoggp/search_test

Disclaimer #

This small library was developed (and later, improved) based on the excellent tutorial provided by Nishant Desai at: https://blog.usejournal.com/change-app-bar-in-flutter-with-animation-cfffb3413e8a

All due credit goes to him :)

46
likes
0
pub points
49%
popularity

Publisher

unverified uploader

A new Flutter package project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on search_app_bar