Create detail view for part stock

- Shows all in-stock stock items
This commit is contained in:
Oliver Walters 2021-01-20 23:56:25 +11:00
parent 15fee106b5
commit 83465511aa
5 changed files with 168 additions and 10 deletions

View file

@ -220,7 +220,9 @@ class SublocationList extends StatelessWidget {
return ListView.builder(
shrinkWrap: true,
physics: ClampingScrollPhysics(),
itemBuilder: _build, itemCount: _locations.length);
itemBuilder: _build,
itemCount: _locations.length
);
}
}