ability to display added ingredients in listview

This commit is contained in:
SomnusVeritas
2023-10-31 19:26:12 +01:00
parent 3e094bf8f0
commit a29f37b0e8
5 changed files with 141 additions and 53 deletions

View File

@@ -3,14 +3,18 @@ import 'package:flutter/material.dart';
final _baseTheme = ThemeData(
fontFamily: "Ubuntu",
useMaterial3: true,
).copyWith(
dividerTheme: const DividerThemeData(indent: 20, endIndent: 20),
);
final lightTheme = _baseTheme.copyWith(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepPurple,
brightness: Brightness.light,
),
);
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepPurple,
brightness: Brightness.light,
),
dividerTheme: DividerThemeData(
color: Colors.grey[600],
));
final darkTheme = _baseTheme.copyWith(
colorScheme: ColorScheme.fromSeed(