This date picker lets you exclude certain days in a week
npm install react-native-dt-picker
import DtPicker from 'react-native-dt-picker';
// ...
<DtPicker
hint="select a date"
dateFormat="MM/dd/yyyy"
restrictedDays={[1, 2, 7]}
onDateChanged={(e) => console.log('on change', e.nativeEvent.text)}
style={{
height: 30,
backgroundColor: 'white',
width: 100,
}}
/>;
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT