SwiftUI and Xcode 12 - Keyboard Notification

Code Block
let nofiticationCenter = NotificationCenter.default
notificationCenter.addObserver(self, selector: #selector(keyBoardWillShow(notification:)), name: UIResponder.keyboardWillShowNotification, object: nil)


Doesn't appear to work with Xcode 12 beta 1. Has something replaced UIResponder for keyboard notifications?

Same doubt here.
SwiftUI and Xcode 12 - Keyboard Notification
 
 
Q