restrict room name to single line

This commit is contained in:
Florian Renaud 2023-05-12 00:26:50 +02:00
parent a3f0281525
commit 2ed8515231

View file

@ -54,6 +54,7 @@ fun LabelledTextField(
value = value,
placeholder = { Text(placeholder) },
onValueChange = onValueChange,
singleLine = maxLines == 1,
maxLines = maxLines,
)
}