flutter/examples
Adam Barth 49c4787698 Convert Drawer to using navigator
This patch converts drawer to using the "openDialog" pattern for managing its
state. Currently, the drawer entrance and exit animation aren't integrated with
the navigator's animation system because the drawer's animations can be stopped
and reversed, which the navigator can't yet understand. That means dismissing
the drawer via the system back button causes the drawer to be removed
instanteously.

Fixes #715
Fixes #1187
2015-10-05 10:24:19 -07:00
..
address_book Use }) : super consistently 2015-10-02 23:12:03 -07:00
demo_launcher RenderInkWell should use gestures 2015-10-03 12:49:34 -07:00
fitness Convert Drawer to using navigator 2015-10-05 10:24:19 -07:00
game Updates work with latest Flutter changes 2015-10-02 15:10:02 -07:00
hello_world Make fn3 the default widget framework 2015-10-01 09:48:35 -07:00
mine_digger Make fn3 the default widget framework 2015-10-01 09:48:35 -07:00
raw Moves from vector_math to vector_math_64 2015-10-01 14:46:13 -07:00
rendering Switch scheduler over to Duration 2015-10-03 13:48:57 -07:00
stocks Convert Drawer to using navigator 2015-10-05 10:24:19 -07:00
widgets Convert Drawer to using navigator 2015-10-05 10:24:19 -07:00
BUILD.gn Update playfair revision 2015-08-19 09:05:30 -07:00
README.md Rename Sky to Flutter in a few more places 2015-09-26 12:46:03 -07:00

Flutter Examples

This directory contains several examples of using Flutter. Each of these is an individual Dart application package. If you wish to run them with sky_tool then you will want to run pub get inside their directory before running ./packages/sky/sky_tool start.

  1. Hello, world. The hello world app is a basic app that shows the text "hello, world."

  2. Stocks. The stocks app is an example of a typical mobile app built using Flutter. The app shows a list of all the stocks in the NASDAQ.

  3. Widgets. The widgets app contains a number of Flutter widgets so you can experiment with them in a simple container.