To ignore the dark mode the only thing I am using is
AppCompatDelegate.DefaultNightMode = AppCompatDelegate.ModeNightNo;
But it does not work well for me since when navigating to a WebView and returning the entries that I do not have configured with white backgroundcolor they turn black.
entry when entering the app -> 1
After navigating a web view and return -> 2
The instantiation of the entry
var lastNameEntry = new Entry
{
Placeholder = "Apellido",
TextColor = Color.Black,
ReturnType = ReturnType.Next,
};
The solution I have is to put BackGroundColor = Color.White in all the entries but is there any alternative to this?