bug fix: singleline was by default false
This commit is contained in:
parent
b53e3cdc5a
commit
d6b2c17f29
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ fun LabelledInputField(
|
|||
value: String,
|
||||
onNewValue: (String) -> Unit,
|
||||
@StringRes label: Int,
|
||||
singleLine: Boolean = false
|
||||
singleLine: Boolean = true
|
||||
) {
|
||||
OutlinedTextField(
|
||||
value = value,
|
||||
|
|
Reference in a new issue