Sean Proctor
12/28/2022, 9:31 AMPopup on Compose for desktop that works like a Dialog on Compose for Android? I'm missing two features: shading the content behind the Popup and clicking on that content dismissing it without also having clicking on the Popup itself causing it to be dismissed. androidx.compose.material.AlertDialog doesn't do either of these.Sean Proctor
12/28/2022, 9:47 AMAlertDialog. Is there a way to have a Box block gestures from passing through to its parent?Sean Proctor
12/28/2022, 10:29 AMBox around the content with a Modifier.onClick {} intercepts the click.Dima Avdeev
12/28/2022, 2:58 PM