wrap select server page in safe area
This commit is contained in:
parent
a9ac891ec4
commit
8f3f9fbef1
1 changed files with 97 additions and 95 deletions
|
|
@ -59,7 +59,8 @@ class SelectServerPage extends HookConsumerWidget {
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: Appbar(),
|
appBar: Appbar(),
|
||||||
body: Center(
|
body: SafeArea(
|
||||||
|
child: Center(
|
||||||
child: ConstrainedBox(
|
child: ConstrainedBox(
|
||||||
constraints: .new(maxWidth: 600),
|
constraints: .new(maxWidth: 600),
|
||||||
child: ListView(
|
child: ListView(
|
||||||
|
|
@ -165,6 +166,7 @@ class SelectServerPage extends HookConsumerWidget {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue