diff --git a/mobile/lib/main.dart b/mobile/lib/main.dart index d6498c2..4cebfda 100644 --- a/mobile/lib/main.dart +++ b/mobile/lib/main.dart @@ -30,7 +30,7 @@ class MyApp extends StatelessWidget { title: 'Fresh Plaza', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue), - scaffoldBackgroundColor: const Color(0xFFEEEEEE), + scaffoldBackgroundColor: const Color(0xFFFAFAFF), textTheme: const TextTheme( headlineLarge: TextStyle(color: Color(0xFF000000), fontSize: 64), bodyLarge: TextStyle(color: Color(0xFF000000), fontSize: 20), diff --git a/mobile/lib/pages/all_receipts_page.dart b/mobile/lib/pages/all_receipts_page.dart index 1829cd7..3e5ce57 100644 --- a/mobile/lib/pages/all_receipts_page.dart +++ b/mobile/lib/pages/all_receipts_page.dart @@ -16,6 +16,7 @@ class ReceiptsListItem extends StatelessWidget { @override Widget build(BuildContext context) { return Card( + color: Colors.white, child: InkWell( borderRadius: const BorderRadius.all(Radius.circular(10)), onTap: () { diff --git a/mobile/lib/pages/product_page.dart b/mobile/lib/pages/product_page.dart index 3834c67..5c67441 100644 --- a/mobile/lib/pages/product_page.dart +++ b/mobile/lib/pages/product_page.dart @@ -16,6 +16,7 @@ class ProductPage extends StatelessWidget { context.watch(); return Scaffold( body: Card( +color: Colors.white, margin: const EdgeInsets.all(10), child: Container( padding: const EdgeInsets.symmetric(vertical: 10), diff --git a/mobile/lib/widgets/primary_card.dart b/mobile/lib/widgets/primary_card.dart index d5a1d09..43a3eb8 100644 --- a/mobile/lib/widgets/primary_card.dart +++ b/mobile/lib/widgets/primary_card.dart @@ -11,6 +11,7 @@ class PrimaryCard extends StatelessWidget { @override Widget build(BuildContext context) { return Card( + color: Colors.white, child: SizedBox(height: 100, child: child), ); } diff --git a/mobile/lib/widgets/primary_input.dart b/mobile/lib/widgets/primary_input.dart index a559c06..d21763d 100644 --- a/mobile/lib/widgets/primary_input.dart +++ b/mobile/lib/widgets/primary_input.dart @@ -21,9 +21,12 @@ class PrimaryInput extends StatelessWidget { height: height, child: TextField( decoration: InputDecoration( - border: const OutlineInputBorder(), - label: Text(label), - hintText: placeholderText), + border: const OutlineInputBorder(), + label: Text(label), + hintText: placeholderText, + filled: true, + fillColor: Colors.white, + ), obscureText: obscure, )); }