Fix bug when list of tiles flows off screen (#370)

- Reimplement scrolling behaviour
This commit is contained in:
Oliver 2023-06-13 19:58:41 +10:00 committed by GitHub
parent 71bf3ad049
commit 9cc666d13e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

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