Status Update
Comments
al...@gmail.com <al...@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.
ma...@google.com <ma...@google.com>
pr...@google.com <pr...@google.com> #5
hi...@kuwaitnet.email <hi...@kuwaitnet.email> #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).
fa...@gmail.com <fa...@gmail.com> #7
Hi! Try using the 'shape' parameter introduced in the 1.3.0 release, it should work:
DropdownMenu( modifier = Modifier, shape = RoundedCornerShape(12dp), expanded = true, onDismissRequest = { ... }) { }
mp...@gmail.com <mp...@gmail.com> #8
The issue persists in the compose preview, but it's working in the builds.
Description
Jetpack Compose version: 1.4.3 Jetpack Compose component used: androidx.compose.material Android Studio Build: #AI-231.7864.76.2311.10114981 (Android Studio Hedgehog | 2023.1.1 Canary 4) Kotlin version: 1.8.21
DropdownMenu
andExposedDropdownMenu
in compose.material and compose.material3 don't provide a way to change the shape of the menu. This seems inconsistent with the non-Compose