In my homepage I have a lazycolumn which one of items is Horizontal pager. Inside each horizontal pager there are some pages that I need to have lazyColumn inside them too. and the error is that you are not allowed to use nested scrolling in same direction. How should I implement this ui?
@Composable
fun Home() {
LazyColumn {
item { }
item { }
item { }
item {
TabRow(selectedTabIndex =) {
}
}
item {
HorizontalPager(count =) { page ->
when {
page == 0 -> {
LazyColumn {
items(list) {
}
}
}
}
}
}
}
}
