Xamarin Forms custom theme not working
I have an Android app that uses Xamarin Forms 2.0. I made a custom theme to set some colors. I created these files: Resources/values/styles.xml (AndroidResource) <?xml version="1.0" encoding="utf-8" ?> <resources> <style name="SmartbitLight" parent="SmartbitLight.Base"> </style> <style name="SmartbitLight.Base" parent="Theme.AppCompat.NoActionBar"> <item name="colorPrimary">@color/blueLight</item> <item name="colorPrimaryDark">@color/blueDark</item> <item name="colorAccent">@color/grey</item> <item name="android:windowBackground">@color/white</item> <item name="android:textColorPrimary">@color