Fix theme selection bug and update onboarding with AppTheme picker

- Change Theme enum from Int to String raw values to fix theme selection bug
- Replace OnboardingStyle icon/color pickers with unified AppTheme grid
- Remove visible text labels from voting layouts while keeping accessibility labels (WCAG 2.1 AA compliant)
- Update widget voting views to use icons only with proper accessibility support
- Consolidate app icons to single unified icon set

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Trey t
2025-12-28 00:03:34 -06:00
parent 8fab566724
commit c4e013763a
1001 changed files with 1377 additions and 6781 deletions

View File

@@ -117,9 +117,9 @@ struct CustomizeContentView: View {
}
// WIDGETS
SettingsSection(title: "Widgets") {
CustomWidgetSection()
}
// SettingsSection(title: "Widgets") {
// CustomWidgetSection()
// }
// NOTIFICATIONS
SettingsSection(title: "Notifications") {
@@ -208,9 +208,9 @@ struct CustomizeView: View {
}
// WIDGETS
SettingsSection(title: "Widgets") {
CustomWidgetSection()
}
// SettingsSection(title: "Widgets") {
// CustomWidgetSection()
// }
// NOTIFICATIONS
SettingsSection(title: "Notifications") {
@@ -330,7 +330,7 @@ struct ThemePickerCompact: View {
.foregroundColor(theme == aTheme ? .accentColor : textColor.opacity(0.6))
}
}
.buttonStyle(.plain)
.buttonStyle(BorderlessButtonStyle())
}
Spacer()
}