Status Update
Comments
so...@google.com <so...@google.com>
ph...@gmail.com <ph...@gmail.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.
ja...@gmail.com <ja...@gmail.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).
sh...@gmail.com <sh...@gmail.com> #7
The same issue happens for me with androidx.compose.material3:material3:1.1.0-alpha04
, button doesn't appear with default animations for AnimatedVisibility
, but it works when using scaleIn/scaleOut animations instead
pa...@gmail.com <pa...@gmail.com> #8
I'm still having this issue with androidx.compose.material3:material3:1.1.0-beta02
. Default animations don't work at all, i.e. nothing gets shown. Fade animations get clipped. Scale animations seem to work fine.
jo...@asos.com <jo...@asos.com> #9
co...@google.com <co...@google.com>
pe...@gmail.com <pe...@gmail.com> #10
te...@gmail.com <te...@gmail.com> #11
mi...@gmail.com <mi...@gmail.com> #12
This issue is still occurring in androidx.compose:compose-bom:2023.10.01
an...@gmail.com <an...@gmail.com> #13
I am also experiencing this issue in 2023.10.01
.
As mentioned in the original issue, setting enter = scaleIn()
and exit = scaleOut()
on the AnimatedVisibility
seems to fix the issue, but does not work as a solution when there is more than one FAB (primary extended and secondary small FAB).
ph...@bayf.net <ph...@bayf.net> #14
Still happening with 2024.03.00
ja...@billease.com <ja...@billease.com> #15
mi...@gmail.com <mi...@gmail.com> #16
mc...@solem.fr <mc...@solem.fr> #17
Still reproducing as today.
Animation androidx.compose.animation:animation:1.7.0-beta06
Foundation androidx.compose.foundation:foundation:1.7.0-beta06
pa...@outlook.com <pa...@outlook.com> #18
2025 and still happening
Description
Jetpack Compose release version: 1.1.1 & 1.2.0-alpha04
With some animation types, including
AnimatedVisibility
default ones, the view doesn't appear at all.ScaleIn/out works fine.
If I put
AnimatedVisibility
in aBox(Modifier.size(FabSize))
, it works almost fine, expect the shadow - it's being clipped during animation until the final frame.