How to animate tab transitions in SwiftUI's TabView for macOS?

In SwiftUI for macOS, how can I animate the transition from one Tab to another Tab within TabView when the selection changes?

In AppKit, we can do the following:

let tabViewController = NSTabViewController()
tabViewController.transitionOptions = [.crossfade, .allowUserInteraction]

How can I achieve the same crossfade effect when using TabView?

How to animate tab transitions in SwiftUI's TabView for macOS?
 
 
Q