I tried adding an IconButton() and wanted to click the button to turn it on or off (while also clicking elsewhere to dismiss it)
But a funny qustion happend.
The trigger button is included in "Other Places", when I click the button to close the menu, this triggers onDismissRequest() first, and then triggers the button's onClick(), which makes me unable to close the menu (when clicked will instantly close and then open again)
Scaffold( ... topBar = { TopAppBar( ... actions = { var menuExpanded by remember { mutableStateOf(false) } Box { IconButton(onClick = { menuExpanded = !menuExpanded}) { Icon( painter = painterResource(id = R.drawable.menu), contentDescription = "menu", tint = white ) } DropdownMenu( expanded = menuExpanded, properties = PopupProperties(), onDismissRequest = { menuExpanded = false } ) { // items } } } ) } ) { ... } I know I can set Modifier.offset() so that menu masks the button, but I don't want to do that.
What should I do?