Set primary scrollable on login screen

This commit is contained in:
Hillel Coren 2023-01-05 17:06:48 +02:00
parent 39cdde7542
commit 488645dda2
1 changed files with 3 additions and 1 deletions

View File

@ -330,6 +330,7 @@ class _LoginState extends State<LoginView> {
return SafeArea(
child: ScrollableListView(
primary: true,
children: <Widget>[
if (isWindows()) AppTitleBar(),
Container(
@ -811,7 +812,8 @@ class _LoginState extends State<LoginView> {
],
),
],
)
),
SizedBox(height: 20),
],
),
);