fix(editor): 错误的文本
This commit is contained in:
parent
4250f7da43
commit
1a5c2f50e0
1 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue