feat: add mock images

This commit is contained in:
2026-07-30 17:08:00 +02:00
parent 217be08231
commit d79df6839b
14 changed files with 3 additions and 12 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

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