From 1161c3c446f5fb3e10c338bf3e2aa3471bbc0ec7 Mon Sep 17 00:00:00 2001 From: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com> Date: Wed, 22 May 2024 18:06:00 -0400 Subject: [PATCH] [BWA-22] Prevent FAB from hiding verification codes (#102) --- .../authenticator/feature/itemlisting/ItemListingScreen.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/src/main/kotlin/com/bitwarden/authenticator/ui/authenticator/feature/itemlisting/ItemListingScreen.kt b/app/src/main/kotlin/com/bitwarden/authenticator/ui/authenticator/feature/itemlisting/ItemListingScreen.kt index dfaffeafd5..6e0f22fc33 100644 --- a/app/src/main/kotlin/com/bitwarden/authenticator/ui/authenticator/feature/itemlisting/ItemListingScreen.kt +++ b/app/src/main/kotlin/com/bitwarden/authenticator/ui/authenticator/feature/itemlisting/ItemListingScreen.kt @@ -407,6 +407,12 @@ private fun ItemListingContent( modifier = Modifier.fillMaxWidth(), ) } + + // Add a spacer item to prevent the FAB from hiding verification codes at the + // bottom of the list + item { + Spacer(Modifier.height(72.dp)) + } } } }