diff --git a/lib/features/send/send_did_page.dart b/lib/features/send/send_did_page.dart index b4b346fa..6fe7cdf4 100644 --- a/lib/features/send/send_did_page.dart +++ b/lib/features/send/send_did_page.dart @@ -14,18 +14,20 @@ class SendDidPage extends HookWidget { return Scaffold( appBar: AppBar( - title: Column(children: [ - Text( - '\$$sendAmount', - style: Theme.of(context).textTheme.headlineMedium, - textAlign: TextAlign.center, - ), - Text( - Loc.of(context).accountBalance, - style: Theme.of(context).textTheme.bodyMedium, - textAlign: TextAlign.center, - ) - ])), + title: Column( + children: [ + Text( + '\$$sendAmount', + style: Theme.of(context).textTheme.headlineMedium, + textAlign: TextAlign.center, + ), + Text( + Loc.of(context).accountBalance, + style: Theme.of(context).textTheme.bodyMedium, + textAlign: TextAlign.center, + ) + ], + )), body: SafeArea( child: Column(crossAxisAlignment: CrossAxisAlignment.stretch, children: [ diff --git a/lib/shared/theme/theme.dart b/lib/shared/theme/theme.dart index db3e4cbc..6061e140 100644 --- a/lib/shared/theme/theme.dart +++ b/lib/shared/theme/theme.dart @@ -7,6 +7,9 @@ ThemeData lightTheme(BuildContext context) => ThemeData( useMaterial3: true, colorScheme: lightColorScheme, textTheme: textTheme(ThemeData().textTheme), + appBarTheme: const AppBarTheme( + scrolledUnderElevation: 0, + ), segmentedButtonTheme: SegmentedButtonThemeData( style: ButtonStyle( backgroundColor: MaterialStateProperty.resolveWith( @@ -36,6 +39,9 @@ ThemeData darkTheme(BuildContext context) => ThemeData( useMaterial3: true, colorScheme: darkColorScheme, textTheme: textTheme(ThemeData.dark().textTheme), + appBarTheme: const AppBarTheme( + scrolledUnderElevation: 0, + ), segmentedButtonTheme: SegmentedButtonThemeData( style: ButtonStyle( backgroundColor: MaterialStateProperty.resolveWith(