chore: Adjust onboarding design

This commit is contained in:
Christian Pauly 2022-08-06 13:35:59 +02:00
commit 7f92d218f8
4 changed files with 44 additions and 9 deletions

View file

@ -61,6 +61,12 @@ abstract class FluffyThemes {
surfaceTintColor: Colors.white,
shadowColor: Colors.black.withAlpha(64),
),
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.all(16),
textStyle: const TextStyle(fontSize: 16),
),
),
);
static ThemeData dark([ColorScheme? colorScheme]) => ThemeData(
@ -94,6 +100,12 @@ abstract class FluffyThemes {
surfaceTintColor: Colors.black,
shadowColor: Colors.black.withAlpha(64),
),
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.all(16),
textStyle: const TextStyle(fontSize: 16),
),
),
);
static Color blackWhiteColor(BuildContext context) =>