Travis Griggs
03/03/2023, 12:30 AMvar showDialog by remember { mutableStateOf(false) }
ButtonOrWhateverComposeable(clickAction = { showDialog = true }
if (showDialog) {
AlertDialog(...some horizontal padding + showDialog = false...)
}
Is that really the idiom/pattern. Just put a conditional AlertDialog near the widget that opens it?