2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-13 02:35:27 +00:00

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
);
}
}