mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 11:36:24 +00:00
Fix bug when list of tiles flows off screen (#370)
- Reimplement scrolling behaviour
This commit is contained in:
parent
71bf3ad049
commit
9cc666d13e
2 changed files with 5 additions and 3 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
- Adds options for configuring screen orientation
|
- Adds options for configuring screen orientation
|
||||||
- Improvements to barcode scanning
|
- Improvements to barcode scanning
|
||||||
- Translation updates
|
- Translation updates
|
||||||
|
- Bug fix for scrolling long lists
|
||||||
|
|
||||||
### 0.12.1 - May 2023
|
### 0.12.1 - May 2023
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,10 @@ mixin BaseWidgetProperties {
|
||||||
Widget getBody(BuildContext context) {
|
Widget getBody(BuildContext context) {
|
||||||
|
|
||||||
// Default body calls getTiles()
|
// Default body calls getTiles()
|
||||||
return Column(
|
return SingleChildScrollView(
|
||||||
children: getTiles(context)
|
child: Column(
|
||||||
|
children: getTiles(context)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue