Я не вижу свой DatePicker на iOS.Модал открывается, но ничего не видно, и когда я перемещаю DatePicker внутри модала, дата меняется, так что я знаю, что это работает.Это просто невидимо, и я не знаю почему.
Вы можете помочь?
thx
type Props = {
date: Date,
updateDate: Function
}
type State = {
}
export class DatePickerComponent extends React.Component<Props, State> {
constructor(Props: Object) {
super(Props);
}
render() {
return (
<DatePicker
cancelBtnText="Annuler"
confirmBtnText="Valider"
customStyles={{
dateIcon: {
position: 'absolute',
left: 5,
marginLeft: 0
},
dateInput: {
marginLeft: 45
}
}}
date={this.props.date}
format="DD-MM-YYYY"
iconSource={require("../../assets/Birthday.png")}
locale="fr"
onDateChange={(date) => this.props.updateDate(date)}
style={{width: "60%", marginTop: 15}}
/>
);
}
}