bug fix: singleline was by default false

This commit is contained in:
Lukas Barragan Torres 2023-05-10 11:31:11 +02:00
parent b53e3cdc5a
commit d6b2c17f29

View file

@ -47,7 +47,7 @@ fun LabelledInputField(
value: String, value: String,
onNewValue: (String) -> Unit, onNewValue: (String) -> Unit,
@StringRes label: Int, @StringRes label: Int,
singleLine: Boolean = false singleLine: Boolean = true
) { ) {
OutlinedTextField( OutlinedTextField(
value = value, value = value,