As the title says, I want to change the color of DatePicker from black to white but I did not sorted this out after trying multiple times. I've seen Nativescript's documentation regarding this but I might not understand it correctly how to do it. Also tried this example for Android API21+ from https://docs.nativescript.org/ui/components/date-picker , but nothing happens:
<!-- DatePicker in calendar mode -->
<style name="AppTheme" parent="AppThemeBase">
<item name="android:datePickerStyle">@style/CalendarDatePicker</item>
</style>
<style name="CalendarDatePicker" parent="android:Widget.Material.Light.DatePicker">
<item name="android:datePickerMode">calendar</item>
<item name="colorPrimary">@color/ns_blue</item>
<item name="colorPrimaryDark">@color/ns_primaryDark</item>
<item name="colorAccent">@color/ns_accent</item>
</style>