Fixed
Status Update
Comments
ma...@google.com <ma...@google.com> #2
co...@google.com <co...@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.
co...@google.com <co...@google.com>
ap...@google.com <ap...@google.com> #5
deleted
co...@google.com <co...@google.com>
na...@google.com <na...@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).
Description
Jetpack Compose component used: ElevatedFilterChip
Android Studio Build: Android Studio Hedgehog | 2023.1.1 RC 3
Kotlin version: 1.9.21
Steps to Reproduce or Code Sample to Reproduce:
Declared an ElevatedFilterChip setting it as disabled and selected
ElevatedFilterChip(
onClick = {},
selected = false,
enabled = false,
label = { Text("Chip 3") },
)
Seems like it is using the onSurface color as the disabledContainerColor which is turning it totally black.
Stack trace (if applicable):