Status Update
Comments
ma...@google.com <ma...@google.com>
ap...@google.com <ap...@google.com> #3
Thanks for the report!
ap...@google.com <ap...@google.com> #4
The release notes documentation has been edited to clarify this change in behavior for line height.
To support non-standard text sizes, we encourage users to follow the Material design system and use a different style = LocalTextStyle.current.copy(lineHeight = TextUnit.Unspecified)
, or create a custom Typography
entirely.
ap...@google.com <ap...@google.com> #5
tc...@google.com <tc...@google.com> #6
In my case, I have multiple font sizes in the same Text
(using SpanStyle
in AnnotatedString
). There are legitimate reasons for this. For example, when combining Chinese and English (phonetic) together (for language-learning purposes).
ma...@google.com <ma...@google.com> #7
Woops. Yeah it's done. It was a meta ticket for a big feature that is done.
Two smaller followups emerged:
This one is done, closing as fixed.
Description
There's a need for a
NestedScrollController
that scrolls only what's visible on the screen for situations where for example, theswipeable
modifier is used in a container that uses aLazyColumnFor
.At the moment, as you can see in the GIF, the child always wins and the content inside the
LazyColumn
scrolls until the last item reaches themaxValue
of theswipeable
modifier. After that, the wrapper starts moving.With nested scrolling, the last item should be visible on the screen before the container starts moving