@@ -5,7 +5,7 @@ import 'package:example/screens/programmatically_controlled_indicator_screen.dar
5
5
import 'package:example/widgets/web_frame.dart' ;
6
6
import 'package:flutter/material.dart' ;
7
7
8
- import 'screens/example_indicator_screen .dart' ;
8
+ import 'screens/opacity_indicator_screen .dart' ;
9
9
import 'screens/fetch_more_screen.dart' ;
10
10
import 'screens/ice_cream_indicator_screen.dart' ;
11
11
import 'screens/plane_indicator_screen.dart' ;
@@ -29,7 +29,7 @@ class MyApp extends StatelessWidget {
29
29
home: const MainScreen (),
30
30
builder: (context, child) => WebFrame (child: child),
31
31
routes: {
32
- '/example' : (context) => const ExampleIndicatorScreen (),
32
+ '/example' : (context) => const OpacityIndicatorScreen (),
33
33
'/plane' : (context) => const PlaneIndicatorScreen (),
34
34
'/ice-cream' : (context) => const IceCreamIndicatorScreen (),
35
35
'/presentation' : (context) => const PresentationScreen (),
@@ -38,7 +38,8 @@ class MyApp extends StatelessWidget {
38
38
'/envelope' : (context) => const EnvelopIndicatorScreen (),
39
39
'/fetch-more' : (context) => const FetchMoreScreen (),
40
40
'/horizontal' : (context) => const HorizontalScreen (),
41
- '/programmatically-controlled' : (context) => const ProgrammaticallyControlled (),
41
+ '/programmatically-controlled' : (context) =>
42
+ const ProgrammaticallyControlled (),
42
43
},
43
44
);
44
45
}
@@ -85,7 +86,8 @@ class MainScreen extends StatelessWidget {
85
86
child: Container (
86
87
height: 50 ,
87
88
alignment: Alignment .center,
88
- child: const Text ("Custom material indicator with list opacity" ),
89
+ child:
90
+ const Text ("Custom material indicator with list opacity" ),
89
91
),
90
92
onPressed: () => Navigator .pushNamed (
91
93
context,
0 commit comments