@@ -24,14 +24,26 @@ class _Index extends StatelessWidget {
2424
2525 static final examples = < _Example > [
2626 _Example ('01 — Minimal screen' , (_) => const ex01.MinimalScreen ()),
27- _Example ('02 — Scrollable header (legacy)' , (_) => const ex02.ExampleScreen ()),
28- _Example ('03 — Overlay layout (legacy)' , (_) => const ex03.OverlayExampleScreen ()),
29- _Example ('04 — DefaultAdaptiveScreenState' , (_) => const ex04.OpinionatedScreen ()),
27+ _Example (
28+ '02 — Scrollable header (legacy)' ,
29+ (_) => const ex02.ExampleScreen (),
30+ ),
31+ _Example (
32+ '03 — Overlay layout (legacy)' ,
33+ (_) => const ex03.OverlayExampleScreen (),
34+ ),
35+ _Example (
36+ '04 — DefaultAdaptiveScreenState' ,
37+ (_) => const ex04.OpinionatedScreen (),
38+ ),
3039 _Example ('05 — Custom breakpoints' , (_) => const ex05.TunedScreen ()),
31- _Example ('06 — Controller cache + state' , (_) => const ex06.CounterScreen (
32- key: ValueKey ('counter' ),
33- controllerTimeout: Duration (minutes: 5 ),
34- ),),
40+ _Example (
41+ '06 — Controller cache + state' ,
42+ (_) => const ex06.CounterScreen (
43+ key: ValueKey ('counter' ),
44+ controllerTimeout: Duration (minutes: 5 ),
45+ ),
46+ ),
3547 _Example ('07 — Async controller init' , (_) => const ex07.AsyncInitScreen ()),
3648 _Example ('08 — df_router integration' , (_) => const ex08.MyApp ()),
3749 _Example ('09 — Side modes showcase' , (_) => const ex09.SideModeShowcase ()),
0 commit comments