LTR Component in RTL Theme

Hi,

i am developing an app that use RTL theme but there is some situations that it is needed to have a component in LTR , for example the stepper component having the plus sign in left , is there any class or fast solution ?!

as a matter of fact i believe that the stepper should have same button placement in RTL and LTR theme anyway.

Regards.

There is no such feature supported. What you can do is to add flex-direction: row-reversed to stepper element, and tweak buttons border radius to make them appear correct.

Why Stepper should have same layout in RTL and LTR?

it is odd to have plus sign in left of a stepper element. persians or other RTL users read textual characters from right to left not the math operations or anything related to math, other examples are:

1+ {wrong} | +1 (correct)
2 = 1 + 1 {wrong} | 1 + 1 = 2 (correct)

Regards.