roto93 / react-native-neat-date-picker

An easy to use date picker for react native.
MIT License
50 stars 29 forks source link

Min and Max Date not working #10

Closed ElangoPrince closed 2 years ago

ElangoPrince commented 2 years ago

Hi I'm trying to set min and max date. But it's not working. Can you any one help me how to set those values. Sample i tried:

<DatePicker
       minDate={new Date('03-19-2022')}
       maxDate={new Date('03-21-2022')}
       isVisible={this.state.isShowEndRangePicker}
       mode={'single'}
       onCancel={ this.onCancel }
       onConfirm={ this.onConfirm }
/>
ElangoPrince commented 2 years ago
  minDate={new Date('2022-03-19')}
       maxDate={new Date('2022-03-24')}