Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added links to samples. #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ The apps are slowly being updated to Dart 2; be sure to use the __--preview-dart

## Apps

1. __Hello World__: one-line Flutter app __Updated for Dart 2__
2. __Material Navigation__: two screen Flutter that demonstrates navigation using Material
* (2.1) __Routing with data__: passing data between navigation routes
3. __TextField__: example of a simple single-line text field and a multi-line text field with a submit button
4. __HTTP__: fetching text and images over http
5. __Layouts__: example widget Layouts
6. __Lists__: example list view
* (6.1) __Dynamic lists__: create a dynamic (infinite) list with dividers
7. __Stacks__: how to render widgets at set positions in a stack
8. __Inherited Widgets__: how to use inherited widgets to pass data down a widget tree
9. __i18n__: simple example of i18n support in Flutter
10. __Driver Testing__: a simple demonstration driver test
11. __JSON Parsing__: parses a JSON network response
12. __Streams__: handle state updates using streams
* (12.1) __StreamBuilder__: handle state updates using StreamBuilder
* (12.2) __RxDart__: handle state updates using StreamBuilder with Observables
* (12.3) __JSON with Streams__: HTTP and JSON parsing using streams
13. __Bottom Nav Bar__: Simple bottom nav bar implementation, using Stack and OffStage
14. __Custom Painter__: implements a basic bar chart using a custom painter
15. __Tabs__: tabbed pages demo
1. [Hello World](https://github.com/mjohnsullivan/flutter-by-example/tree/master/01_hello_world): one-line Flutter app __Updated for Dart 2__
2. [Material Navigation](https://github.com/mjohnsullivan/flutter-by-example/tree/master/02_0_material_navigation): two screen Flutter that demonstrates navigation using Material
* (2.1) [Routing with data](https://github.com/mjohnsullivan/flutter-by-example/tree/master/02_1_routing_and_data): passing data between navigation routes
3. [TextField](https://github.com/mjohnsullivan/flutter-by-example/tree/master/03_text_field): example of a simple single-line text field and a multi-line text field with a submit button
4. [HTTP](https://github.com/mjohnsullivan/flutter-by-example/tree/master/04_http): fetching text and images over http
5. [Layouts](https://github.com/mjohnsullivan/flutter-by-example/tree/master/05_layouts): example widget Layouts
6. [Lists](https://github.com/mjohnsullivan/flutter-by-example/tree/master/06_0_lists): example list view
* (6.1) [Dynamic lists](https://github.com/mjohnsullivan/flutter-by-example/tree/master/06_1_dynamic_lists): create a dynamic (infinite) list with dividers
7. [Stacks](https://github.com/mjohnsullivan/flutter-by-example/tree/master/07_stacks): how to render widgets at set positions in a stack
8. [Inherited Widgets](https://github.com/mjohnsullivan/flutter-by-example/tree/master/08_inherited_widgets): how to use inherited widgets to pass data down a widget tree
9. [i18n](https://github.com/mjohnsullivan/flutter-by-example/tree/master/09_i18n): simple example of i18n support in Flutter
10. [Driver Testing](https://github.com/mjohnsullivan/flutter-by-example/tree/master/10_driver_tests): a simple demonstration driver test
11. [JSON Parsing](https://github.com/mjohnsullivan/flutter-by-example/tree/master/11_json_parsing): parses a JSON network response
12. [Streams](https://github.com/mjohnsullivan/flutter-by-example/tree/master/12_0_streams): handle state updates using streams
* (12.1) [StreamBuilder](https://github.com/mjohnsullivan/flutter-by-example/tree/master/12_1_stream_builder): handle state updates using StreamBuilder
* (12.2) [RxDart](https://github.com/mjohnsullivan/flutter-by-example/tree/master/12_2_rxdart): handle state updates using StreamBuilder with Observables
* (12.3) [JSON with Streams](https://github.com/mjohnsullivan/flutter-by-example/tree/master/12_3_json_streams): HTTP and JSON parsing using streams
13. [Bottom Nav Bar](https://github.com/mjohnsullivan/flutter-by-example/tree/master/13_bottom_nav_bar): Simple bottom nav bar implementation, using Stack and OffStage
14. [Custom Painter](https://github.com/mjohnsullivan/flutter-by-example/tree/master/14_custom_painter): implements a basic bar chart using a custom painter
15. [Tabs](https://github.com/mjohnsullivan/flutter-by-example/tree/master/15_tabs): tabbed pages demo

## Flutter Docs

Expand Down