From 1cadaa23d2c2229570edc2ac371637b6003b4b59 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 10 Aug 2021 17:27:00 +1000 Subject: [PATCH] skeleton for creating new stock item in category --- lib/widget/location_display.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/widget/location_display.dart b/lib/widget/location_display.dart index ab456c0c..ec4180c8 100644 --- a/lib/widget/location_display.dart +++ b/lib/widget/location_display.dart @@ -162,6 +162,12 @@ class _LocationDisplayState extends RefreshableState { ); } + Future _newStockItem(BuildContext context) async { + + // TODO + + } + Widget locationDescriptionCard({bool includeActions = true}) { if (location == null) { return Card( @@ -226,7 +232,6 @@ class _LocationDisplayState extends RefreshableState { icon: FaIcon(FontAwesomeIcons.boxes), label: L10().stock, ), - // TODO - Add in actions when they are written... BottomNavigationBarItem( icon: FaIcon(FontAwesomeIcons.wrench), label: L10().actions,