Hey, the Dropdown Menu inside my LazyVerticalGrid items is causing recomposition every time I swipe my HorizontalPager. Removing the Dropdown Menu is causing no recomposition.
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 AM
showMenu is a mutableStateOf
Copy code
var showMenu by remember { mutableStateOf(false) }