Set maxLines in LyricsView's TextFieldDialog

This commit is contained in:
vfsfitvnm
2022-06-15 18:24:40 +02:00
parent 8c33a61705
commit f47e518e26

View File

@@ -44,7 +44,7 @@ fun LyricsView(
hintText = "Enter the lyrics", hintText = "Enter the lyrics",
initialTextInput = lyricsOutcome.valueOrNull ?: "", initialTextInput = lyricsOutcome.valueOrNull ?: "",
singleLine = false, singleLine = false,
maxLines = Int.MAX_VALUE, maxLines = 10,
isTextInputValid = { true }, isTextInputValid = { true },
onDismiss = { onDismiss = {
isEditingLyrics = false isEditingLyrics = false