Text(entry.timeFinished, style: .timer).multilineTextAlignment(.leading).opacity(0.5).background(Color.red)

Text("3:41").opacity(0.5).background(Color.blue)

Просмотр целиком:
struct TimePieceWidgetEntryView: View {
var entry: Provider.Entry
var body: some View {
VStack {
Text("Timer ⏱")
Text(Date().addingTimeInterval(600), style: .timer).opacity(0.5)
}.font(.title.bold().monospacedDigit())
.padding(5)
.widgetURL(entry.url)
}
}
Подробнее здесь: https://stackoverflow.com/questions/662 ... taking-spa