An app showcasing Flutter components, with side-by-side source code view.
Switch branches/tags
Nothing to show
Clone or download
Latest commit 963cf8a Dec 29, 2018
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
android fix "couldn't find libflutter.so" error Dec 28, 2018
ios version 1.0.0 Aug 5, 2018
lib v1.3.3 Dec 28, 2018
res/images add gif to ImageExample Oct 10, 2018
screenshots upd screenshot Dec 9, 2018
.gitignore ignore more files under android/ Dec 28, 2018
.metadata version 1.0.0 Aug 5, 2018
LICENSE Initial commit Aug 5, 2018
README.md add Awesome Flutter badge Dec 24, 2018
pubspec.yaml v1.3.3 Dec 28, 2018

README.md

Flutter Catalog

Get it on Google Play Awesome Flutter

An app showcasing Flutter components, with side-by-side source code view.

Screenshots

How to contribute by adding a new example page

  1. Create a dart file under lib/route/ (or just duplicate a file, e.g. cp widgets_icon_ex.dart new_example.dart);
  2. In the new file, create a class that extends MyRoute;
  3. Add const constructor, the convention is to use the file path as constructor's default parameter;
  4. (Optional) override getters: title, description, links;
  5. Override buildMyRouteContent(), try to make the code simple, as it'll be shown on phone screens;
  6. Open lib/my_app_meta.dart, import the new file at the beginning of file;
  7. In kMyAppRoutesStructure, add an instantiation of the new class under the appropriate item group.

Credits

This app is written with reference to many resources, including: