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
Stylianos Gakis
03/03/2025, 6:34 AM
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
martmists
03/03/2025, 11:00 AM
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.
martmists
03/03/2025, 8:01 PM
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