I’m having problems using DatePicker with react native
when I’m using it, there are an error like this:
render error a date or time must be specified as value prop
my repository: my github repository
const [date, setDate] = useState(new Date());
function changeDate(selectDate) {
if (event?.type === 'dismissed') {
setDate(date);
return;
}
setDate(selectDate);
}
<DatePicker
format="DD/MM/YYY"
date={date}
onDateChange={changeDate}
/>
3
Answers
You need to provide
value
prop instead ofdate
maybe this will work
You used the wrong prop for the initial date it’s
value
notdate
and you also don’t need to set a date that is already set