When I want to open a URL from my application in Safari on iPad,
It will be open Safari in split screen mode:
Is there anyway to prevent split screen and force Safari to open in full size mode?
let url = URL(string: "https://google.com")!
DispatchQueue.main.async {
UIApplication.shared.open(url, options: [:]) { _ in}
}