How to change the state of a variable when launching another composable
I tried many different solutions to solve my problem, but i could not solve it. I would like to change the state of a variable, in a Composable, when another composable is launched. I really tried many different solutions. This is the example code:
@Composable
private fun Actions() {
Row {
// More
var showMore by rememberState(initial = false)
IconButton(onClick = {showMore = true} )
{
Icon(imageVector = Icons.Outlined.MoreVert, contentDescription =...