feat: better clarity for disabled reminders, continued prev commit work

This commit is contained in:
Michael Freno
2026-01-09 13:13:07 -05:00
parent b8f995b2e9
commit 63dde81b97
10 changed files with 99 additions and 15 deletions

View File

@@ -76,9 +76,19 @@ struct BlinkSetupView: View {
.padding()
.glassEffect(.regular, in: .rect(cornerRadius: 12))
Text(
"You will be subtly reminded every \(intervalMinutes) minutes to blink"
)
if enabled {
Text(
"You will be subtly reminded every \(intervalMinutes) minutes to blink"
)
.font(.subheadline)
.foregroundColor(.secondary)
} else {
Text(
"Blink reminders are currently disabled."
)
.font(.caption)
.foregroundColor(.secondary)
}
Spacer()
}