While porting a legacy app I have an intermediate ...
# compose
d
While porting a legacy app I have an intermediate step where
LazyColumn
is inside a android-view-based
BottomSheetBehavior
+
CoordinatorLayout
. The thing is that when
LazyColumn
is scrolled (scollOffset != 0) and then I release and drag down then whole bottom sheet is scrolled down. Expected behavior is that
LazyColumn
scrolled to the zero offset and only then bottomsheet goes down. Is this possible to achieve in this mix?
a
Nested scrolling between Compose and Views is not yet fully supported. You can follow this bug https://issuetracker.google.com/issues/174348612
d
thank you!