Right to left(RTL)

7 Jan 20191 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
Add android:supportsRtl="true" to your application tag in your AndroidManifest.xml file, and make sure your MinSDKVersion is 17+. For android settings you can refer here.

<manifest ... >
<uses-sdk android:minSdkVersion="17" />
<application ... android:supportsRtl="true">
</application>
</manifest>