Nat Strangerweather
02/05/2022, 6:12 PMNat Strangerweather
02/05/2022, 6:13 PMAdam Powell
02/05/2022, 6:15 PMModifier.pointerInput
gives you access to all of the input events you'll need for thisNat Strangerweather
02/05/2022, 6:19 PM.pointerInput(Unit) {
detectTapGestures(
onPress = { println(randomLetter)}
)
},
it works but only for one letter at a time...Adam Powell
02/05/2022, 7:34 PMdetectTapGestures
is implemented, you can use awaitPointerInputScope
to get individual down/move/up events during the different dispatch phasesNat Strangerweather
02/05/2022, 7:36 PM