onLongPressGesture tvos code example
Example: onLongPressGesture tvos
struct ContentView: View {
var body: some View {
Text("Hello, world!")
.focusable()
.onPlayPauseCommand(perform: {
print("hello")
})
}
}