design: Make appbar in material you design for mobile mode

This commit is contained in:
krille-chan 2024-03-24 20:38:39 +01:00
parent 5687aab290
commit 22b467de21
No known key found for this signature in database

View file

@ -98,8 +98,11 @@ abstract class FluffyThemes {
),
appBarTheme: AppBarTheme(
toolbarHeight: FluffyThemes.isColumnMode(context) ? 72 : 56,
shadowColor: Colors.grey.withAlpha(64),
surfaceTintColor: colorScheme.background,
shadowColor: FluffyThemes.isColumnMode(context)
? Colors.grey.withAlpha(64)
: null,
surfaceTintColor:
FluffyThemes.isColumnMode(context) ? colorScheme.background : null,
systemOverlayStyle: SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
statusBarIconBrightness: brightness.reversed,