Hi using this new Text method for timers is not counting down. Here is an example of how I implemented it.
Text(.now, format:.timer(countingDownIn: Date.now..<Date.now.addingTimeInterval(120),
showsHours: true,
maxFieldCount: 2,
maxPrecision: .seconds(60))
)
After waiting over a minute it never counts down
Hi!
Thanks so much for finding that, please submit a bug report at https://feedbackassistant.apple.com and post the FB number here.
In the meantime, use this to do the same thing:
Text(timerInterval: Date.now...Date(timeInterval: 120, since: .now))
Documentation: https://developer.apple.com/documentation/swiftui/text/init(timerinterval:pausetime:countsdown:showshours:)