Fixed
Status Update
Comments
jo...@google.com <jo...@google.com>
ap...@google.com <ap...@google.com> #2
when click backspace, we call DeleteSurroundingTextInCodePoints, then the app with textField crash.
简单来说就是按删除按键的时候,调用了DeleteSurroundingTextInCodePoints ,然后,编辑框所在应用竟然崩了,报出了上述堆栈BUG。这么低级的错误不应该发生的。
简单来说就是按删除按键的时候,调用了DeleteSurroundingTextInCodePoints ,然后,编辑框所在应用竟然崩了,报出了上述堆栈BUG。这么低级的错误不应该发生的。
na...@google.com <na...@google.com> #3
Could you please clarify if you are able to reproduce it with soft keyboard or only with the dedicated keyboard attached?
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.