mirror of
https://github.com/bitwarden/android.git
synced 2025-01-30 11:43:39 +03:00
BIT-754 Add singleLine = true to text field components (#99)
This commit is contained in:
parent
31386b458d
commit
594c466467
2 changed files with 2 additions and 0 deletions
|
@ -51,6 +51,7 @@ fun BitwardenPasswordField(
|
|||
} else {
|
||||
PasswordVisualTransformation()
|
||||
},
|
||||
singleLine = true,
|
||||
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Password),
|
||||
trailingIcon = {
|
||||
IconButton(
|
||||
|
|
|
@ -26,6 +26,7 @@ fun BitwardenTextField(
|
|||
label = { Text(text = label) },
|
||||
value = value,
|
||||
onValueChange = onValueChange,
|
||||
singleLine = true,
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue