Skip to content

How to display over tabs? #167

@scottmcpherson

Description

@scottmcpherson

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

image

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
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions