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
+3 -4
View File
@@ -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;