https://kotlinlang.org logo
#compose
Title
# compose
p

Piotr

12/14/2020, 2:29 PM
Hi, i have a question regarding rtl support, is it possible to disable item (in this case linear progress indicator) from changing? I have an issue, that when i change to from ltr to rtl, the progress indicator, also changes positions(so it displays progress from right), i would like to disable that Thanks
a

Andrey Kulikov

12/14/2020, 9:26 PM
you can wrap your progress indicator into
Providers(AmbientLayoutDirection provides LayoutDirection.Ltr) { … }
👍 1
4 Views