fix: 调整拼图界面内容输入框高度为160dp

- 将内容输入框最小高度从200dp调整为160dp
- 保持5行文字的显示能力
- 优化界面空间利用率
This commit is contained in:
2026-03-07 00:07:15 +08:00
parent 306e479764
commit 1d0cac0d1a
53 changed files with 19 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
#Fri Mar 06 23:58:06 CST 2026
#Sat Mar 07 00:02:01 CST 2026
path.4=14/classes.dex
path.3=12/classes.dex
path.2=10/classes.dex

View File

@@ -1 +1 @@
τ8ξ)ϊ*ψ'ί&θ%ή!ψω#ϋ#η#η#η#η#η#
τ8ξ)ϊ*ψ'ί&θ%ή!ψω#ϋ#η#η#η#η#η#α#

View File

@@ -1 +1 @@
ëXè¾ú¹Ñ~Ì>Åô­ï`ý¿ÄJùÉïNÔî×úbå4å²×?Í#àÀ2èjÓ*ú3ð²ÀÚëð2ã;Ñþñ/Éæ†À0ÉÅ€î*ËüíØ&üËÅÉ$æ
ëXè¾ú¹Ñ~Ì>Åô­ï`ý¿ÄJùÉïNÔî×úbå4å²×?Í#àÀ2èjÓ*ú3ð²ÀÚëð2ã;Ñþñ/Éæ†À0ÉÅ€î*ËüíØ&üËÅÉ$æñ‘Â"Ë

View File

@@ -371,21 +371,21 @@ fun MergeScreen(
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = content,
onValueChange = { newValue ->
val lines = newValue.split("\n")
if (lines.size <= 5) {
content = newValue
}
},
label = { Text("内容最多5行") },
modifier = Modifier
.fillMaxWidth()
.heightIn(min = 200.dp),
minLines = 5,
maxLines = 5
)
OutlinedTextField(
value = content,
onValueChange = { newValue ->
val lines = newValue.split("\n")
if (lines.size <= 5) {
content = newValue
}
},
label = { Text("内容最多5行") },
modifier = Modifier
.fillMaxWidth()
.heightIn(min = 160.dp),
minLines = 5,
maxLines = 5
)
}
}