how to change textColor of past and future dates in react-native-date-picker

37 Views Asked by At

i have android version ios version

i need current time to be white, and past and future time to be red, how to customize it? if i set textColor={'red'}, it change color for every time

 <DatePicker
   androidVariant="nativeAndroid"
   textColor={'red'}
   fadeToColor="blue"
   open={isOpen}
   date={date}
   mode="datetime"
   minimumDate={currentDate}
   onConfirm={newDate => handleDateChange(newDate)}
   onCancel={handleCloseModal}
   onDateChange={newDate => handleDateChange(newDate)}
/>

how to change the text color?

0

There are 0 best solutions below