I'd like to change my steppers foreground color, and I can't find the property that works on it. I'd prefer to keep the standard stepper with the colors changed, and not have to create a custom one.
accentColor and foregroundColor don't work.
Stepper(value: $timer, in: 1...30) {
Text("\(timer) " + "minutes")
.foregroundColor(.red)
}
.accentColor(.red)
.foregroundColor(.red)
}
This:
to this:
Is this even possible atm?

