1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2026-08-25 01:05:36 +00:00

docs: document the wrapper/example app structure

This commit is contained in:
Nishant Srivastava
2026-08-18 01:05:36 +02:00
parent bcb3629907
commit 9d67d31c72
3 changed files with 33 additions and 0 deletions

View File

@@ -30,6 +30,14 @@ cd simple_material_app
flutter run
```
## Where to look for the example code
Every example app is split into two files:
- `lib/main.dart`: the app wrapper. It only sets up the `MaterialApp` (title, theme, routes).
- `lib/example.dart`: the focused example code. This file teaches the concept the
app demonstrates. Open it to see how the feature works.
## Useful links
- [Flutter Widgets Catalog](https://flutter.dev/widgets/)