Set primary scrollable on login screen
This commit is contained in:
parent
39cdde7542
commit
488645dda2
|
|
@ -330,6 +330,7 @@ class _LoginState extends State<LoginView> {
|
||||||
|
|
||||||
return SafeArea(
|
return SafeArea(
|
||||||
child: ScrollableListView(
|
child: ScrollableListView(
|
||||||
|
primary: true,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
if (isWindows()) AppTitleBar(),
|
if (isWindows()) AppTitleBar(),
|
||||||
Container(
|
Container(
|
||||||
|
|
@ -811,7 +812,8 @@ class _LoginState extends State<LoginView> {
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
)
|
),
|
||||||
|
SizedBox(height: 20),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue