changed theming of ingredient list

This commit is contained in:
SomnusVeritas
2023-11-01 15:44:52 +01:00
parent 83063f23d7
commit ef9da054ed
2 changed files with 47 additions and 23 deletions

View File

@@ -4,7 +4,7 @@ final _baseTheme = ThemeData(
fontFamily: "Ubuntu",
useMaterial3: true,
).copyWith(
dividerTheme: const DividerThemeData(indent: 20, endIndent: 20),
dividerTheme: const DividerThemeData(indent: 0, endIndent: 0),
);
final lightTheme = _baseTheme.copyWith(
@@ -17,8 +17,11 @@ final lightTheme = _baseTheme.copyWith(
));
final darkTheme = _baseTheme.copyWith(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.purple.shade100,
brightness: Brightness.dark,
),
colorScheme: _darkColorScheme,
scaffoldBackgroundColor: _darkColorScheme.background,
);
final _darkColorScheme = ColorScheme.fromSeed(
seedColor: Colors.purple.shade100,
brightness: Brightness.dark,
);