From 4b5843336970c8386702191a36ee7e57839b8fd3 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 17 Jan 2026 21:47:47 +0100 Subject: Protect bottom bar with SafeArea On Android the bottom bar with the connection state used to be hidden by the three Android navigation buttons. --- lib/ui.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ui.dart b/lib/ui.dart index e6cb6f4..b9f82d0 100644 --- a/lib/ui.dart +++ b/lib/ui.dart @@ -16,7 +16,9 @@ class UI extends StatelessWidget { Expanded(child: ContactList()), ], ), - bottomNavigationBar: const ConnectionStatus(), + bottomNavigationBar: const SafeArea( + child: ConnectionStatus(), + ), ), ); } -- cgit v1.3