Refactor: Checkbox uses U+25FC (black small square)

- Changed indicator from  to ◼ (U+25FC)
- Smaller, more compact checkbox appearance
- Updated example page state summary
- All 571 tests passing
This commit is contained in:
phranck
2026-02-06 17:45:45 +01:00
parent 6d1a4e876e
commit 941d8b704d
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -59,11 +59,11 @@ struct TogglePage: View {
}
HStack(spacing: 1) {
Text("Hidden Files:").foregroundColor(.palette.foregroundSecondary)
Text(advancedOptionsEnabled ? "[\u{25FE}]" : "[ ]").foregroundColor(.palette.accent)
Text(advancedOptionsEnabled ? "[\u{25FC}]" : "[ ]").foregroundColor(.palette.accent)
}
HStack(spacing: 1) {
Text("Analytics:").foregroundColor(.palette.foregroundSecondary)
Text(analitycsEnabled ? "[\u{25FE}]" : "[ ]").foregroundColor(.palette.accent)
Text(analitycsEnabled ? "[\u{25FC}]" : "[ ]").foregroundColor(.palette.accent)
}
}
}