chore: Adjust onboarding design
This commit is contained in:
parent
fe9850b313
commit
7f92d218f8
4 changed files with 44 additions and 9 deletions
|
|
@ -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) =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue