Eric Ampire [MOD]
06/09/2021, 10:40 AMLazyVerticalGrid
inside the HorizontalPager
provided by accompanist like this
HorizontalPager(state = pagerState) {
LazyVerticalGrid(
state = scrollState,
contentPadding = PaddingValues(10.dp),
cells = GridCells.Fixed(2),
content = {
items(TestData.Product.data) { product ->
ProductView(product = product)
}
}
)
}
After doing this, the list scrolls with difficultySe7eN
06/09/2021, 10:44 AMEric Ampire [MOD]
06/09/2021, 10:46 AMSe7eN
06/09/2021, 10:54 AM