fix(editor): 错误的文本

This commit is contained in:
Super12138 2025-02-12 08:35:26 +08:00
parent 4250f7da43
commit 1a5c2f50e0

View file

@ -247,7 +247,7 @@ fun TodoEditorPage(
if (toDo != null) { if (toDo != null) {
Text( Text(
text = stringResource(R.string.label_priority), text = stringResource(R.string.label_more),
style = MaterialTheme.typography.titleMedium style = MaterialTheme.typography.titleMedium
) )
@ -258,9 +258,9 @@ fun TodoEditorPage(
modifier = Modifier.fillMaxWidth() modifier = Modifier.fillMaxWidth()
) { ) {
Text( Text(
text = stringResource(R.string.label_more), text = stringResource(R.string.tip_mark_completed),
style = MaterialTheme.typography.labelLarge, style = MaterialTheme.typography.labelLarge,
modifier = Modifier.padding(end = 5.dp) modifier = Modifier.padding(end = 10.dp)
) )
Switch( Switch(
checked = completedSwitchState, checked = completedSwitchState,