Sample App Catalog
This catalog lists applications that demonstrate how to implement common mobile design patterns with Flutter. Each sample demonstrates how a few Flutter widgets can be put together to implement a meaningful user interface. The samples are short - just one Dart file - but they’re complete applications. They should be easy to try out and tweak with your favorite IDE/code editor.
If there are other sample apps that you’d like to see we’d appreciate hearing from you on our Gitter channel or mailing list.
![Android screenshot](https://storage.googleapis.com/flutter-catalog/cb4a54db8fb3726bf4293b9cc5cb12ce16883803/animated_list_small.png)
An AnimatedList that displays a list of cards which stay in sync with an app-specific ListModel. When an item is added to or removed from the model, the corresponding card animates in or out of view.
This app features the following classes: AnimatedList, AnimatedListState.
![Android screenshot](https://storage.googleapis.com/flutter-catalog/cb4a54db8fb3726bf4293b9cc5cb12ce16883803/app_bar_bottom_small.png)
Any widget with a PreferredSize can appear at the bottom of an AppBar.
This app features the following classes: AppBar, PreferredSize, TabBarView, TabController.
![Android screenshot](https://storage.googleapis.com/flutter-catalog/cb4a54db8fb3726bf4293b9cc5cb12ce16883803/basic_app_bar_small.png)
A typical AppBar with a title, actions, and an overflow dropdown menu.
This app features the following classes: AppBar, IconButton, PopupMenuButton, Scaffold.