The SwiftUI integration is beautiful:
Dynamic animations, transitions, and state updates work seamlessly in widgets now.
You can build widget UIs that feel as responsive as in-app experiences—because they basically are.
```swift
TimelineEntry(date: date, relevance: relevance) {
TaskWidgetView(tasks: tasks)
.containerBackground(.fill.tertiary, for: .widget)
}
```