When `supportsRtl=false`, but a RTL language is se...
# compose
s
When
supportsRtl=false
, but a RTL language is set,
LocalLayoutDirection
isn't immediately set to Ltr, causing the UI to be composed in rtl for a brief moment:
Copy code
println("layout direction: ${LocalLayoutDirection.current}")
// layout direction: Rtl
// layout direction: Ltr
Of course I can make
LocalLayoutDirection
always provide
LayoutDirection.Ltr
, but is this expected?