diff --git a/examples/travel_app/lib/main.dart b/examples/travel_app/lib/main.dart index 12b82e8d3..2552d24d0 100644 --- a/examples/travel_app/lib/main.dart +++ b/examples/travel_app/lib/main.dart @@ -71,6 +71,7 @@ class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( + debugShowCheckedModeBanner: false, title: 'Dynamic UI Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue), @@ -121,8 +122,15 @@ class _MyHomePageState extends State { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( - backgroundColor: Theme.of(context).colorScheme.inversePrimary, - title: const Text('Dynamic UI Demo'), + leading: const Icon(Icons.menu), + title: const Row( + children: [ + Icon(Icons.chat_bubble_outline), + SizedBox(width: 8.0), // Add spacing between icon and text + Text('Dynamic UI Demo'), + ], + ), + actions: [const Icon(Icons.person_outline), const SizedBox(width: 8.0)], ), body: Center( child: ConstrainedBox(