I seem to have some troubles with the TextColor of my Entry on iOS when Dark Mode is enabled. Whenever I set the Entry's Enabled state to false, the TextColor turns white and it's not possible to change. I used the following simple code to reproduce this.
Page.xaml
<Entry x:Name="TestEntry" />
Page.xaml.cs
public OnboardingPage()
{
InitializeComponent();
TestEntry.Text = "Testo";
TestEntry.TextColor = Color.Blue;
TestEntry.IsEnabled = false;
}
I am currently using the latest version of Xamarin.Forms. (4.4.0.991640)
Does anybody have an idea what's going wrong here? I don't think this is expected behavior..
Thanks in advance!