Hi, trying to get presentr to render over tabs. Is there a way to do this?

Just using an example setup right now trying to get this to work:
let presenter: Presentr = {
let presenter = Presentr(presentationType: .bottomHalf)
return presenter
}()
var alertController: AlertViewController {
let alertController = AlertViewController(title: "Are you sure? ⚠️", body: "This action can't be undone!")
let cancelAction = AlertAction(title: "NO, SORRY! 😱", style: .cancel) {
print("CANCEL!!")
}
let okAction = AlertAction(title: "DO IT! 🤘", style: .destructive) {
print("OK!!")
}
alertController.addAction(cancelAction)
alertController.addAction(okAction)
return alertController
}
Hi, trying to get presentr to render over tabs. Is there a way to do this?
Just using an example setup right now trying to get this to work: