I'm trying to update the root view of a UIHostingController but this happens without animation.
lazy var hostingController = UIHostingController(rootView: ContentView(value: value))
func handleTap() {
let value = ...
withAnimation {
hostingController.rootView = ContentView(value: value)
}
}