Jordi Saumell
11/10/2022, 6:46 PMJordi Saumell
11/10/2022, 6:48 PMAlbert Chang
11/11/2022, 9:19 AMI need the root composable to be a LazyColumn to properly handle nested scrolling with the bottom sheet.I don't understand this. By nested scrolling do you mean bottom sheet's drag gesture? That doesn't require any scrollable children.
Jordi Saumell
11/11/2022, 10:23 AM.nestedScroll(nestedScrollInterop)
Albert Chang
11/11/2022, 10:35 AMLazyColumn
. You can replace it with a Column
and apply
Modifier
.nestedScroll(rememberNestedScrollInteropConnection())
.scrollable(
state = remember { ScrollableState(consumeScrollDelta = { 0f }) },
orientation = Orientation.Vertical
)
to it.Jordi Saumell
11/11/2022, 11:12 AMAlbert Chang
11/11/2022, 11:55 AMLazyColumn
in the pager.Jordi Saumell
11/11/2022, 12:01 PM