mirror of
https://github.com/bitwarden/android.git
synced 2026-08-28 04:32:25 -05:00
Adjust height of Spacer in BitwardenTextField based on cardStyle presence
This commit is contained in:
+1
-1
@@ -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