chore: 边距调整等
This commit is contained in:
parent
3be46b8a55
commit
0f27ee5b6f
3 changed files with 4 additions and 3 deletions
|
|
@ -38,7 +38,7 @@ android {
|
|||
applicationId = "cn.super12138.todo"
|
||||
minSdk = 24
|
||||
targetSdk = 36
|
||||
versionCode = 995
|
||||
versionCode = 996
|
||||
versionName = "2.3.3"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
|
|
|||
|
|
@ -246,6 +246,7 @@ fun SharedTransitionScope.TodoEditorPage(
|
|||
text = stringResource(R.string.label_more),
|
||||
style = MaterialTheme.typography.titleMedium
|
||||
)
|
||||
Spacer(modifier = Modifier.size(4.dp))
|
||||
TodoDueDateChooser(
|
||||
value = uiState.dueDateState,
|
||||
onValueChange = { uiState.dueDateState = it },
|
||||
|
|
|
|||
|
|
@ -65,9 +65,9 @@ fun SettingsAbout(
|
|||
clickCount++
|
||||
if (clickCount == 5) {
|
||||
if ((System.currentTimeMillis() % 2) == 0.toLong()) {
|
||||
Toast.makeText(context, "🍨", Toast.LENGTH_SHORT).show()
|
||||
Toast.makeText(context, "\uD83E\uDDE7", Toast.LENGTH_SHORT).show()
|
||||
} else {
|
||||
Toast.makeText(context, "✈️", Toast.LENGTH_SHORT).show()
|
||||
Toast.makeText(context, "⛄", Toast.LENGTH_SHORT).show()
|
||||
}
|
||||
clickCount = 0
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue