Previously in WatchKit we could tell a certain InterfaceController to present itself using .becomeCurrentPage, how can we do it in Swift UI?
In WatchKit for example I would:
// handle notification
@objc func respondToWaterlock(_ notification: NSNotification) {
self.becomeCurrentPage()
}