Make image field not required

This commit is contained in:
Alexander Laevens
2022-11-30 16:49:02 -07:00
parent 7dd7abc09c
commit df195634c0
4 changed files with 9 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Grocery Helper',
title: 'One Trip',
theme: lightTheme,
darkTheme: darkTheme,
themeMode: ThemeMode.system,

View File

@@ -258,7 +258,8 @@ class _IngredientSectionState extends State<IngredientSection> {
),
),
Divider(
height: 1,
height: 2,
thickness: 1,
color: index % 2 == 0
? Theme.of(context).colorScheme.primary
: Theme.of(context).colorScheme.error)