I have container that houses a few composable buttons in it. Is there a way to make the contents of the container visible, without making them clickable? I know I can individually add logic to the buttons and make them un-clickable, but I wanted to check if I can control this at a higher level (Similar to a glass panel - you can still see everything behind the panel, but can't interact with it)
c
Chris Sinco [G]
01/25/2022, 11:43 PM
I think you can use the
drawWithContent
modifier to draw a transparent rectangle in front of the content (buttons) to block them