wrap chat page in a safearea

This commit is contained in:
Henry Hiles 2026-07-19 00:12:15 -04:00
commit a9ac891ec4
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -20,7 +20,8 @@ class ChatPage extends ConsumerWidget {
final roomId = ref.watch(KeyController.provider(KeyController.roomKey)); final roomId = ref.watch(KeyController.provider(KeyController.roomKey));
ref.read(EmojiController.provider); ref.read(EmojiController.provider);
return Scaffold( return SafeArea(
child: Scaffold(
appBar: initComplete ? null : Appbar(), appBar: initComplete ? null : Appbar(),
body: initComplete body: initComplete
? Row( ? Row(
@ -44,6 +45,7 @@ class ChatPage extends ConsumerWidget {
drawer: isDesktop || !initComplete drawer: isDesktop || !initComplete
? null ? null
: Sidebar(isDesktop: isDesktop), : Sidebar(isDesktop: isDesktop),
),
); );
}, },
); );