@@ -5,7 +5,7 @@ import 'package:example/screens/programmatically_controlled_indicator_screen.dar
55import 'package:example/widgets/web_frame.dart' ;
66import 'package:flutter/material.dart' ;
77
8- import 'screens/example_indicator_screen .dart' ;
8+ import 'screens/opacity_indicator_screen .dart' ;
99import 'screens/fetch_more_screen.dart' ;
1010import 'screens/ice_cream_indicator_screen.dart' ;
1111import 'screens/plane_indicator_screen.dart' ;
@@ -29,7 +29,7 @@ class MyApp extends StatelessWidget {
2929 home: const MainScreen (),
3030 builder: (context, child) => WebFrame (child: child),
3131 routes: {
32- '/example' : (context) => const ExampleIndicatorScreen (),
32+ '/example' : (context) => const OpacityIndicatorScreen (),
3333 '/plane' : (context) => const PlaneIndicatorScreen (),
3434 '/ice-cream' : (context) => const IceCreamIndicatorScreen (),
3535 '/presentation' : (context) => const PresentationScreen (),
@@ -38,7 +38,8 @@ class MyApp extends StatelessWidget {
3838 '/envelope' : (context) => const EnvelopIndicatorScreen (),
3939 '/fetch-more' : (context) => const FetchMoreScreen (),
4040 '/horizontal' : (context) => const HorizontalScreen (),
41- '/programmatically-controlled' : (context) => const ProgrammaticallyControlled (),
41+ '/programmatically-controlled' : (context) =>
42+ const ProgrammaticallyControlled (),
4243 },
4344 );
4445 }
@@ -85,7 +86,8 @@ class MainScreen extends StatelessWidget {
8586 child: Container (
8687 height: 50 ,
8788 alignment: Alignment .center,
88- child: const Text ("Custom material indicator with list opacity" ),
89+ child:
90+ const Text ("Custom material indicator with list opacity" ),
8991 ),
9092 onPressed: () => Navigator .pushNamed (
9193 context,
0 commit comments