What’s the best way to block input and focus to a ...
# compose
z
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.