mirror of
https://github.com/phranck/TUIkit.git
synced 2026-05-21 09:50:35 +00:00
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:
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user