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

This commit is contained in:
Thomas Atkins 2019-02-09 12:14:50 -06:00
parent a5dd9f2daf
commit 09caea9c3c

View File

@ -26,7 +26,8 @@ class _MyHomePageState extends State<MyHomePage> {
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')),
);
}