I want to set 5:00 PM as min time in TimePickerAndroid
. How can I set it?
this.showPicker.bind(this, 'simple', {
hour: new Date().getHours(),
minute: new Date().getMinutes(),
minHour: this.props.minHour // I am passing 5 as minHour prop
})
I tried this but didn't work.