flutter/examples/widgets
Adam Barth bc20871cb9 Introduce Tween and the new animation API
This patch removes state from the animation system, which was causing problems
as we were scaling the use of animated values.

Now the "tween" objects are stateless and can watch animations, which creates a
new object that holds both the tween and the animation instead of mutating the
tween every tick of the animation.

This patch ports one client as a proof-of-concept.

Fixes #215
2016-01-19 14:26:05 -08:00
..
card_collection.dart ShaderMask needs to play nicely with compositing 2016-01-11 21:57:54 -08:00
container.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
drag_and_drop.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
ensure_visible.dart Update to the new TextDecoration API 2015-12-09 15:11:34 -08:00
fab.dart Floating Action Button transitions 2016-01-12 11:42:20 -08:00
flutter.yaml Floating Action Button transitions 2016-01-12 11:42:20 -08:00
gestures.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
hero_under.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
horizontal_scrolling.dart Rename ScrollDirection to Axis 2016-01-11 11:28:42 -08:00
http_post.dart Fix #104 Support for setting HTTP headers 2015-11-16 14:10:58 -08:00
indexed_stack.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
launch_url.dart Add an example for launching a URL 2015-11-13 14:16:25 -08:00
media_query.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
mimic_demo.dart Add liftToOverlay to Mimicable 2015-12-02 14:20:56 -08:00
navigation.dart NavigatorTransaction 2015-11-30 15:24:36 -08:00
nine_patch.dart Add a centerSlice parameter to images 2015-10-13 13:21:36 -07:00
overlay_geometry.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
pageable_list.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
piano.dart Also update piano.dart 2016-01-11 18:53:32 -08:00
progress_indicator.dart Introduce Tween and the new animation API 2016-01-19 14:26:05 -08:00
pubspec.yaml Rewire the pubspecs to use local paths 2015-11-06 22:46:52 -08:00
raw_keyboard.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
README.md add a flutter.yaml file for the widgets project 2015-11-12 13:42:54 -08:00
scrollbar.dart Replace ScrollableList with ScrollableList2 2016-01-06 11:16:57 -08:00
sector.dart Provide a safe time to update a WidgetToRenderBoxAdapter 2016-01-11 23:14:37 -08:00
smooth_resize.dart Strong modeify the examples 2015-10-23 18:13:25 -07:00
spinning_mixed.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00
styled_text.dart Use a named argument for Widget children 2016-01-11 13:17:09 -08:00

Small examples of the Flutter widget framework

To run these, open a terminal in this directory and use the following command:

flutter start --checked -t foo.dart

...where foo.dart is the file you want to run.