Fixed
Status Update
Comments
se...@google.com <se...@google.com>
se...@google.com <se...@google.com>
ap...@google.com <ap...@google.com> #2
can you confirm repro?
se...@google.com <se...@google.com> #3
Yes this occurs when having duplicates in the list. I've been told there's an internal bug already opened on this.
listAdapter.submitList(Arrays.asList("one", null));
listAdapter.submitList(Arrays.asList("one", null, "two", null));
listAdapter.submitList(Arrays.asList("one", null));
listAdapter.submitList(Arrays.asList("one", null, "two", null));
na...@google.com <na...@google.com> #4
thanks, please update this issue when internal bug gets resolved
de...@dyson.com <de...@dyson.com> #5
any news?
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