Changing the default dark Android theme to white in Xamarin.Forms?

You can put Theme parameter to ApplicationAttribute of your main activity

like this

[assembly: Application(Icon = "@drawable/Icon", Theme = "@android:style/Theme.Holo.Light")]

Or you can put this string to AndroidManifest.xml

<application android:theme="@android:style/Theme.Holo.Light" />

Leave a Comment