tablet: fixed welcome page layout on landscape

This commit is contained in:
Thibault Deckers 2022-08-27 12:01:15 +02:00
parent 877a719212
commit e229b59bd4

View file

@ -82,6 +82,7 @@ class _WelcomePageState extends State<WelcomePage> {
] else ] else
Flexible( Flexible(
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [ children: [
Flexible( Flexible(
child: Padding( child: Padding(
@ -94,6 +95,7 @@ class _WelcomePageState extends State<WelcomePage> {
), ),
Flexible( Flexible(
child: ListView( child: ListView(
shrinkWrap: true,
children: _buildControls(context), children: _buildControls(context),
), ),
), ),