diff options
| author | xengineering <me@xengineering.eu> | 2026-01-17 21:47:47 +0100 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-01-17 21:47:47 +0100 |
| commit | 4b5843336970c8386702191a36ee7e57839b8fd3 (patch) | |
| tree | 97d3bfe73331e2614b89d2255ee7b6bc4c5e63b0 /lib/ui.dart | |
| parent | b38f887c0ed04e32ae62f097288fd318b4d3c8f2 (diff) | |
| download | sia-app-4b5843336970c8386702191a36ee7e57839b8fd3.tar sia-app-4b5843336970c8386702191a36ee7e57839b8fd3.tar.zst sia-app-4b5843336970c8386702191a36ee7e57839b8fd3.zip | |
Protect bottom bar with SafeArea
On Android the bottom bar with the connection state used to be hidden by
the three Android navigation buttons.
Diffstat (limited to 'lib/ui.dart')
| -rw-r--r-- | lib/ui.dart | 4 |
1 files changed, 3 insertions, 1 deletions
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(), + ), ), ); } |
