From 488645dda248fb0b2485979893cccfdf54b97bb5 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 5 Jan 2023 17:06:48 +0200 Subject: [PATCH] Set primary scrollable on login screen --- lib/ui/auth/login_view.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ui/auth/login_view.dart b/lib/ui/auth/login_view.dart index ac7ac677d..11edae507 100644 --- a/lib/ui/auth/login_view.dart +++ b/lib/ui/auth/login_view.dart @@ -330,6 +330,7 @@ class _LoginState extends State { return SafeArea( child: ScrollableListView( + primary: true, children: [ if (isWindows()) AppTitleBar(), Container( @@ -811,7 +812,8 @@ class _LoginState extends State { ], ), ], - ) + ), + SizedBox(height: 20), ], ), );