wrap select server page in safe area

This commit is contained in:
Henry Hiles 2026-07-19 00:20:04 -04:00
commit 8f3f9fbef1
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -59,7 +59,8 @@ class SelectServerPage extends HookConsumerWidget {
return Scaffold(
appBar: Appbar(),
body: Center(
body: SafeArea(
child: Center(
child: ConstrainedBox(
constraints: .new(maxWidth: 600),
child: ListView(
@ -165,6 +166,7 @@ class SelectServerPage extends HookConsumerWidget {
),
),
),
),
);
}
}