Code for the thing
let fileBrowser = UIDocumentPickerViewController(documentTypes: listOfAllTypesOfFiles, in: UIDocumentPickerMode.open)
fileBrowser.allowsMultipleSelection = false
fileBrowser.delegate = self
navigationController?.present(fileBrowser, animated: true, completion: nil)
Not sure why, but it shows that empty space at the bottom. Anyone knows what that is?