Fix: increase content text field min height to 150dp for better 5-line display
This commit is contained in:
@@ -371,7 +371,9 @@ fun MergeScreen(
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
label = { Text("内容(最多5行)") },
|
label = { Text("内容(最多5行)") },
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.heightIn(min = 150.dp),
|
||||||
minLines = 5,
|
minLines = 5,
|
||||||
maxLines = 5
|
maxLines = 5
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user