mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-12 18:25:26 +00:00
Fix bug when list of tiles flows off screen (#370)
- Reimplement scrolling behaviour
This commit is contained in:
@ -39,8 +39,10 @@ mixin BaseWidgetProperties {
|
||||
Widget getBody(BuildContext context) {
|
||||
|
||||
// Default body calls getTiles()
|
||||
return Column(
|
||||
children: getTiles(context)
|
||||
return SingleChildScrollView(
|
||||
child: Column(
|
||||
children: getTiles(context)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user