the swiftui videoplayer deactivates the entire root view

After some discovery, it looks like this can be resolved by presenting this view in the fullScreenCover.

    VStack {
        EmptyView()
    }.fullScreenCover($isPresented) {
        VideoPlayer...
    }

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top