https://kotlinlang.org logo
#compose
Title
# compose
z

Zach Klippenstein (he/him) [MOD]

05/21/2020, 9:48 PM
What’s the best way to block input and focus to a Composable? I don’t want it to draw with the disabled emphasis, just make it not interactive.
I tried using a
rawPressStartGestureFilter
, which blocks touch inputs at least, but also blocks the events from getting to the composable below. I’d like to just have the events pass through.