I know there a lots same questions, but none of them work as I need, about to disable future YYYY-MM-DD in React Native Date Picker:
<DatePicker
modal
open={open}
date={date}
mode="date"
onConfirm={updateFilter}
maximumDate={new Date()}
onCancel={() => {
setOpen(false)
}}
/>
But it doesn't work, the future month and date still displayed, only future year is disabled. How to disable all of them?