Changing the default dark Android theme to white in Xamarin.Forms? -
xamarin.forms generate greyish android application. i'd have light / white theme in android (like in ios target).
does simple way switch exist?
you can put theme parameter applicationattribute of main activity
like this
[assembly: application(icon = "@drawable/icon", theme = "@android:style/theme.holo.light")]
or can put string androidmanifest.xml
<application android:theme="@android:style/theme.holo.light" />
Comments
Post a Comment