mirror of
https://github.com/bitwarden/android.git
synced 2026-03-22 06:11:38 -05:00
Adjust height of Spacer in BitwardenTextField based on cardStyle presence
This commit is contained in:
committed by
David Perez
parent
78d5965271
commit
6da8e2c47b
@@ -378,7 +378,7 @@ fun BitwardenTextField(
|
||||
content = content,
|
||||
)
|
||||
}
|
||||
?: Spacer(modifier = Modifier.height(height = 6.dp))
|
||||
?: Spacer(modifier = Modifier.height(height = cardStyle?.let { 6.dp } ?: 0.dp))
|
||||
}
|
||||
val filteredAutoCompleteList = autoCompleteOptions
|
||||
.filter { option ->
|
||||
|
||||
Reference in New Issue
Block a user