Fixed
Status Update
Comments
jo...@google.com <jo...@google.com>
ap...@google.com <ap...@google.com> #2
We recently landed stability improvements and bugfixes in aosp/2258262 and will stabilize ModalBottomSheetLayout following a few release cycles. We are still evaluating the future API of BottomSheetScaffold and are expecting it to stay experimental for a bit more while we migrate it to Swipeable V2.
na...@google.com <na...@google.com> #3
@jossiwolf is this on track for 1.6 or moved out to 1.7?
Description
Jetpack Compose version: 1.4.0
Jetpack Compose component(s) used: Pager
It is now a lot harder to customize the required fling to snap to a page, because shortSnapVelocityThreshold parameter is not exposed to the fling creation function and everything is private inside the Pager file.
Before I could simply do something like this:
but now this is also not possible because SnapFlingBehavior is a concrete class instead of an interface and I'd need to provide all the constructor params and I cannot take advantage of the SnapLayoutInfoProvider class since it's also private.