I have view controller that I push via sheetPresentationController:
let addRSSSheetVC = AddRSSSheetViewController()
let navigationController = UINavigationController(rootViewController: addRSSSheetVC)
if let sheet = navigationController.sheetPresentationController {
sheet.detents = [.medium()]
}
present(navigationController, animated: true)
And when sheet present is look like this:
But when I click on textfield and keyboard present it push sheet view up:
How can I present keyboard above presented view controller without pushing page ?

