I try to use context menu is SwiftUI and I faced into the issue that white background appears during How can I remove white background ?
struct PlayerLayerView: View {
var body: some View {
VideoPlayer(player: AVPlayer(url: URL(string: "https://i.imgur.com/2f4ipZX.mp4")!))
.contextMenu {
Button {} label: {
Text("item")
}
Button {
} label: {
Text("item")
}
} preview: {
VideoPlayer(player: AVPlayer(url: URL(string: "https://i.imgur.com/2f4ipZX.mp4")!))
}
}
}
#Preview {
PlayerLayerView()
}
here is an example https://i.imgur.com/eVa3QTF.mp4