更改“react-native-date-picker”插件中的背景颜色(默认为白色)

7gyucuyw  于 2022-12-14  发布在  React
关注(0)|答案(1)|浏览(172)

[How我可以改变白色的背景颜色,我想根据我的主题颜色设置它(例如,橙子,蓝色,默认)
](https://i.stack.imgur.com/p4xS6.png)中的一个
我已经尝试了一些代码

<item name="android:background">#0BBCED</item>

在styles.xml文件中我不知道这样做是否正确有人能帮助我吗

afdcj2ne

afdcj2ne1#

You can add <item name="android:datePickerDialogTheme">@style/Dialog.Theme</item>
    
    in your style.xml under Base theme like bellow
 
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="android:textColor">#000000</item>
        <item name="android:datePickerDialogTheme">@style/Dialog.Theme</item>
    </style>
    
    
    and you add new style like below
   
<!-- Configuration for Dialog.theme. -->
<style name="Dialog.Theme" parent="Theme.AppCompat.Light.Dialog">
  <!-- BackgroundColor of the date modal -->
    <item name="colorAccent">#0066F5</item>
    <!-- textColor of the date modal -->
    <item name="android:textColorPrimary">#000000</item>
</style>

我希望这是工作

相关问题