Right to left(RTL)
8 Jan 20251 minute to read
Schedule supports to change the layout direction of the control in the RightToLeft direction by setting the LayoutDirection to Rtl. Schedule also supports right-to-left when device layout direction and device language is changed.
schedule.LayoutDirection = LayoutDirection.Rtl;Note
Addandroid:supportsRtl="true"to your application tag in yourAndroidManifest.xmlfile, and make sure yourMinSDKVersionis 17+. For android settings you can refer here.
<manifest ... >
<uses-sdk android:minSdkVersion="17" />
<application ... android:supportsRtl="true">
</application>
</manifest>