[BWA-22] Prevent FAB from hiding verification codes (#102)

This commit is contained in:
Patrick Honkonen
2024-05-22 18:06:00 -04:00
committed by GitHub
parent d3e4b56d30
commit 1161c3c446

View File

@@ -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))
}
}
}
}