Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
when click backspace, we call DeleteSurroundingTextInCodePoints, then the app with textField crash.
简单来说就是按删除按键的时候,调用了DeleteSurroundingTextInCodePoints ,然后,编辑框所在应用竟然崩了,报出了上述堆栈BUG。这么低级的错误不应该发生的。
简单来说就是按删除按键的时候,调用了DeleteSurroundingTextInCodePoints ,然后,编辑框所在应用竟然崩了,报出了上述堆栈BUG。这么低级的错误不应该发生的。
Description
All of the padding
Modifier
s current apply the entire insets of that type, which might not be desired.For example, it's useful to apply the
systemBars
to the padding of a top app bar, but only the top, start and end.In
accompanist/insets
, this was possible withModifier.systemBarsPadding(bottom = false)
In the
androidx.insets
, the equivalent is possible, but much more verbose: