Aaron Waller
10/07/2022, 10:43 AMDropdownMenu(
expanded = showMenu,
onDismissRequest = { showMenu = false }) {
DropdownMenuItem(onClick = {
}) {
Text(text = "Share")
}
}
This is inside my PostItem which is inside my LazyVerticalGrid.
Unfortunately, this is causing a huge frame drop because all the AsyncImages contained in the PostItems are recomposed.Aaron Waller
10/07/2022, 10:45 AMvar showMenu by remember { mutableStateOf(false) }