I have two overlapping elements, A and B. A has so...
# compose
m
I have two overlapping elements, A and B. A has some buttons and tooltips, while B covers the entire screen to show something else. A is no longer visible in this case. However, the tooltips and buttons for A still work, even if there's not visibly anything there. How do I fix this?
s
How does B look like which lets you click through it? Is what you want to have B consume the click events and lot let them propagate further down to elements behind it?
m
I basically have an outer Box, with a Box A (fillMaxSize) and animatedvisibility Box B (also fillMaxSize). I want to make sure that while A isn't visible (because B is visible and covering it), none of its hover/click events can occur.
For now I've made B clickable with no indicator or effect which seems to fix it, but I don't think it's a great solution