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

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -