isRtl flag when binded to a dynamic value reverses the layout consistently but also reverses the content of the text (the text becomes backwards).
<!-- Breaks -->
<RStackLayout [isRtl]="isRtl">
<Label text="some text"></Label> <!-- Gets reversed -->
</RStackLayout>
<!-- Works -->
<RStackLayout></RStackLayout>
<RStackLayout isRtl="false"></RStackLayout>
<RStackLayout isRtl="true"></RStackLayout>

Notice that the text in the above screenshot is reversed
isRtlflag when binded to a dynamic value reverses the layout consistently but also reverses the content of the text (the text becomes backwards).Notice that the text in the above screenshot is reversed