Fix: increase content text field min height to 150dp for better 5-line display

This commit is contained in:
2026-03-06 23:46:11 +08:00
parent 97c701e691
commit 539b076fac

View File

@@ -371,7 +371,9 @@ fun MergeScreen(
}
},
label = { Text("内容最多5行") },
modifier = Modifier.fillMaxWidth(),
modifier = Modifier
.fillMaxWidth()
.heightIn(min = 150.dp),
minLines = 5,
maxLines = 5
)