React native 如何更改UI Kitten React本机日期选择器背景和边框颜色,同时在React Hook Form Controller中使用它而不触及主题?

React native 如何更改UI Kitten React本机日期选择器背景和边框颜色,同时在React Hook Form Controller中使用它而不触及主题?,react-native,datepicker,react-hook-form,react-native-ui-kitten,React Native,Datepicker,React Hook Form,React Native Ui Kitten,我试图改变UI Kitten Datepicker的背景和边框颜色,而不触及全球主题。 我还在React Hook Form Controller中使用Datepicker,它看起来不像Datepicker,但是,Datepicker中的所有其他功能都在它内部工作 到目前为止,在backdropStyle和style中都使用样式表组件的情况并不好 到目前为止,我所拥有的: <Controller as={Datepicker} control={control}

我试图改变UI Kitten Datepicker的背景和边框颜色,而不触及全球主题。 我还在React Hook Form Controller中使用Datepicker,它看起来不像Datepicker,但是,Datepicker中的所有其他功能都在它内部工作

到目前为止,在backdropStyle和style中都使用样式表组件的情况并不好

到目前为止,我所拥有的:

<Controller
      as={Datepicker}
      control={control}
      name="date"
      defaultValue={date}
      onSelect={(date: any) => setDatePicker(date)}
      date={dateSearched}
      accessoryLeft={CalendarIcon}
      accessoryRight={resetFormInput}
      backdropStyle={styles.input}
      style={styles.input}
  />
setDatePicker(日期)}
日期={dateSearched}
accessoryLeft={CalendarIcon}
accessoryRight={resetFormInput}
backdropStyle={styles.input}
style={style.input}
/>

我可以通过编辑控制主题的映射json文件获得一些更改我可以通过编辑控制主题的映射json文件获得一些更改