Fixed
Status Update
Comments
se...@google.com <se...@google.com>
se...@google.com <se...@google.com>
na...@google.com <na...@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.
de...@dyson.com <de...@dyson.com> #5
deleted
Description
Jetpack Compose component used: ModalBottomSheet
Reproduction code
```
CompositionLocalProvider(
LocalLayoutDirection provides LayoutDirection.Rtl
) {
// other screen content
if (openBottomSheet) {
ModalBottomSheet(params...) { // sheet content }
}
}
```
The content within the bottom sheet continues to be LTR while the content outside the sheet is RTL. Also applies to LocalDensity changing the font scale