fix(shift): add color legend and restore manifest trailing newline

- Add legend text (班/休/断点 color meanings) below mini calendar
- Restore trailing newline in AndroidManifest.xml
This commit is contained in:
xfy 2026-07-06 19:10:27 +08:00
parent 32d66f0a42
commit 7f080f2d90
2 changed files with 6 additions and 1 deletions

View File

@ -54,4 +54,4 @@
android:exported="false" />
</application>
</manifest>
</manifest>

View File

@ -160,6 +160,11 @@ fun ShiftPatternScreen(onBack: () -> Unit) {
style = MaterialTheme.typography.labelSmall,
color = MaterialTheme.colorScheme.onSurfaceVariant
)
Text(
text = "图例:班(蓝)/休(红)/断点(琥珀)",
style = MaterialTheme.typography.labelSmall,
color = MaterialTheme.colorScheme.onSurfaceVariant
)
OutlinedButton(
onClick = { showResetDialog = true },