I have MotionLayout in compose with simple collaps...
# compose
a
I have MotionLayout in compose with simple collapsing header and a column below header. On column scroll, I want transition to start. I am using 1.1.0-alpha13 version and I have defined a transition like below:
Copy code
defaultTransition(startConstraintSet, endConstraintSet) {
    onSwipe = OnSwipe(
        anchor = body,
        side = <http://SwipeSide.Top|SwipeSide.Top>,
        direction = SwipeDirection.Down,
        onTouchUp = SwipeTouchUp.AutoComplete,
    )
}
But this does not work. Column with verticalScroll enabled has lets say 100 items, on scrolling the column, transition does not start. When I use nestedScroll in column, transition starts but the clickable children prevent the column scroll. I do not want to use custom progress handling using scrollstate as it is very laggy. Any ideas how to work around this?