flutter/examples
Adam Barth ae8994860e Rationalize text input widgets (#9119)
After this patch, there are three major text input widgets:

 * EditableText. This widget is a low-level editing control that
   interacts with the IME and displays a blinking cursor.

 * TextField. This widget is a Material Design text field, with all the
   bells and whistles. It is highly configurable and can be reduced down
   to a fairly simple control by setting its `decoration` property to
   null.

 * TextFormField. This widget is a FormField that wraps a TextField.

This patch also replaces the InputValue data model for these widgets
with a Listenable TextEditingController, which is much more flexible.

Fixes #7031
2017-04-01 17:30:21 -07:00
..
flutter_gallery Rationalize text input widgets (#9119) 2017-04-01 17:30:21 -07:00
flutter_view Migrate flutter_view example to new plugin API (#9096) 2017-03-29 18:45:19 -07:00
hello_world Build Flutter app as a framework on iOS (#8971) 2017-03-22 17:41:49 -07:00
layers add @required when there's an assert not null (#9124) 2017-03-31 18:34:13 +02:00
platform_channel update iml and .idea (#9101) 2017-03-30 14:23:12 +02:00
platform_channel_swift Add swift version of Platform Channel example (#9098) 2017-03-30 15:11:19 +02:00
stocks Rationalize text input widgets (#9119) 2017-04-01 17:30:21 -07:00
.gitignore Add an example of an extensible iOS app (#4252) 2016-05-29 14:08:35 -07:00
README.md Add swift version of Platform Channel example (#9098) 2017-03-30 15:11:19 +02:00

Flutter Examples

This directory contains several examples of using Flutter. Each of these is an individual Dart application package.

To run an example, use flutter run inside that example's directory. See the getting started guide to install the flutter tool.

Tip: To see examples of how to use a specific Flutter framework class, copy and paste a URL with this format in your browser. Replace foo with the classname you are searching for (for example, here's the query for examples of the AppBar class).

https://github.com/flutter/flutter/search?q=path%3Aexamples+new+foo

Available examples include: