How to make element clickable but without requesti...
# compose
p
How to make element clickable but without requesting focus on click?
m
Yourelement(modifier = Modifier.clickable{ myfun() }) to make it clickable. What do you mean "without requesting focus"? The focus will be there automatically due to the click action. If the focus should go back to where it was before the user clicked your element, then you would have to achieve that after the click happend, I guess.