Entry Placeholder doesn't respond to FlowDirection.
When fixing this issue in the Control Gallery the solution needs to be verified against not having targetSdk set and also having targetSdk set in the Android Manifest to >= 17
Because RTL in Android will act differently based on the targetSDK
Placeholder Reproduction Steps
<Entry Placeholder="[email protected]" Text="{Binding UserEmail, Mode=TwoWay}" Keyboard="Email" />FlowDirection = FlowDirection.RightToLeft;The placeholder should flow from right to left as other views.
The placeholder doesn't respond to the change in flow direction.
As you can see in the image, the first label is normal label which follows rtl fine. but the second one is not as well as the placeholders in the entries

Create a Xamarin forms project and add the above code in the reproduction steps section.
PlaceholderRTL.zip
@samhouts you are the expert in this regard, please check it out.
@ali-h2010 can you test this with the latest 3.2 pre1 ?
Or try the latest nightly build
https://blog.xamarin.com/try-the-latest-in-xamarin-forms-with-nightly-builds/
There have been a couple other issues opened up around this that were resolved when tested against latest builds
@PureWeen , Thanks, I will try that. I haven't found anyone complaining about the formatted text not responding to RTL but if you find this issue a duplicate, than, I can delete it and share my testing on the first issue.
Here's one
https://github.com/xamarin/Xamarin.Forms/issues/3311
I'll close this one for now.
If you are still seeing the issue with latest builds we can re-open
@PureWeen , I tested with the latest Xamarin forms 3.2 pre (not nightly) and the formatted text issue was resolved in that version. but, the placeholder is still not responding.
I also got many strange errors on external plugins that I was using like the segmented button and some syncfusion plugins such as:
No property, bindable property, or event found for 'ItemSpacing', or mismatching type between value and property.
No need to open and issue about them though because it's still prerelease.
I will test with nightly version next
@PureWeen , I tested with nightly and the placeholders are not behaving as expected. Please reopen this issue and I will edit it to focus on the placeholders only.
@ali-h2010 what do you have your targetSDK set to in your manifest?
The android:targetSdkVersion has to be >= 17 in order for the RTL to fully wor
@PureWeen.
The Minimum Android Version is API 17 and Target is API 26.
Issue is also apparent in iOS.
@jafarullahag i fixed the issue with Custom Renderer and changing the alignment.
Xamarin Forms is open source so anyone can contribute to the development and improvement of the framework. But my solutions are not clean and i don't have a good understand of the whole process. This could change once i get certified in Xamarin.
Thanks for the support Jafar
@jafarullahag Thanks for the great demo. I didn't implement changing the language in the same page. This is awesome.
I am facing similar problems in multiple places. I think the problem lies in using DataTemplate. For some reason DataTemplate does not inherit FlowDirection property.