feat: add mock images
This commit is contained in:
@@ -21,11 +21,9 @@ class DefaultProductSeeder {
|
||||
('Leffe Blonde', 380, 30, 'Bier'),
|
||||
('Duvel', 420, 25, 'Bier'),
|
||||
('Hoegaarden', 350, 35, 'Bier'),
|
||||
('Chimay Blue', 500, 20, 'Bier'),
|
||||
('Witte Wijn', 380, 50, 'Wijn'),
|
||||
('Rode Wijn', 400, 45, 'Wijn'),
|
||||
('Rosé', 350, 40, 'Wijn'),
|
||||
('Cava', 650, 15, 'Wijn'),
|
||||
('Cola', 250, 100, 'Frisdrank'),
|
||||
('Cola Zero', 250, 80, 'Frisdrank'),
|
||||
('Spa Bruis', 200, 70, 'Frisdrank'),
|
||||
@@ -33,13 +31,7 @@ class DefaultProductSeeder {
|
||||
('Ice Tea', 280, 60, 'Frisdrank'),
|
||||
('Limonade', 250, 50, 'Frisdrank'),
|
||||
('Chips', 220, 40, 'Snacks'),
|
||||
('Nootjes', 280, 35, 'Snacks'),
|
||||
('Kroketten', 350, 30, 'Snacks'),
|
||||
('Bitterballen', 320, 30, 'Snacks'),
|
||||
('Koffie', 280, 200, 'Coffee'),
|
||||
('Espresso', 250, 200, 'Coffee'),
|
||||
('Latte Macchiato', 350, 150, 'Coffee'),
|
||||
('Warme Chocomelk', 320, 100, 'Coffee'),
|
||||
('Thee', 250, 150, 'Coffee'),
|
||||
];
|
||||
|
||||
|
||||
@@ -131,9 +131,9 @@ class _BarScreenViewState extends State<BarScreenView> {
|
||||
} catch (e, stack) {
|
||||
Sentry.captureException(e, stackTrace: stack);
|
||||
if (!context.mounted) return;
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text('$e')),
|
||||
);
|
||||
ScaffoldMessenger.of(
|
||||
context,
|
||||
).showSnackBar(SnackBar(content: Text('$e')));
|
||||
}
|
||||
},
|
||||
),
|
||||
@@ -163,7 +163,6 @@ class _BarScreenViewState extends State<BarScreenView> {
|
||||
// ---------------------------------------------------------------------------
|
||||
// Product grid
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
class _ProductGrid extends StatelessWidget {
|
||||
final List<Product> products;
|
||||
final bool hasSelectedTab;
|
||||
|
||||
Reference in New Issue
Block a user