Dirk Hoffmann
03/19/2021, 1:39 PMModifier.clickable { }
and/or
Modifier.pointerInput(Unit) {
detectTapGestures(
onPress = {/* Called when the gesture starts */ },
onDoubleTap = { /* Called on Double Tap */ },
onLongPress = { /* Called on Long Press */ },
onTap = { /* Called on Tap */ }
)
}
how could I detect a Mouse right button click ??Igor Demin
03/19/2021, 4:41 PMDirk Hoffmann
03/20/2021, 3:16 PMsonder-joker
03/20/2021, 3:42 PM