Mono touch Dialog RTL overlap issue for Entry Element in Xamarin iOS

43 Views Asked by At

When EntryElement is used for Arabic language the UITextfield overlap with the Title Label

EntryElement entryElementSerialNo = new BasicEntryElement("Serial No.", "Enter Sr no", number) { TextAlignment = UITextAlignment.Right, KeyboardType = UIKeyboardType.NumberPad};

var section= new Section("Test") { entryElementSerialNo };

this.Root = new RootElement("Test"){ section };

What should be the way to display the entryfield to push it to left side to overcome the overlap issue.

0

There are 0 best solutions below