Answers for "onLongPressGesture tvos"

0

onLongPressGesture tvos

struct ContentView: View {
    var body: some View {
        Text("Hello, world!")
        .focusable()
        .onPlayPauseCommand(perform: {
            print("hello")
        })
    }
}
Posted by: Guest on January-24-2021

Browse Popular Code Answers by Language