From 09caea9c3c4c237a4cf7100717f881ecec23b92f Mon Sep 17 00:00:00 2001 From: Thomas Atkins Date: Sat, 9 Feb 2019 12:14:50 -0600 Subject: [PATCH] DB is looking a lot better now that she has all her data in order... time to try to dynamicly create view for diffrent lots --- flutter_app/lib/main.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flutter_app/lib/main.dart b/flutter_app/lib/main.dart index 22827e4..06e905b 100644 --- a/flutter_app/lib/main.dart +++ b/flutter_app/lib/main.dart @@ -26,7 +26,8 @@ class _MyHomePageState extends State { Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('Lot 1')), - body: _buildBody(context, db.document('Lot1').collection('stalls')), + body: _buildBody( + context, db.document('Test-Lot-46').collection('stalls')), ); }