Here is mi code:
import DatePicker from 'react-native-neat-date-picker';
return (
<DatePicker
isVisible={showDatePicker}
mode={'single'}
onCancel={onCancel}
onConfirm={onConfirm}
initialDate={date}
startDate={date}
minDate={new Date()}
/>
)

The minDate is 25-07-2022 but, the picker dont let choose that day. I will try to make a PR when I fix it.