0.1.1 • Published 3 years ago

react-native-dt-picker v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-native-dt-picker

This date picker lets you exclude certain days in a week

Installation

npm install react-native-dt-picker

Usage

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,
  }}
/>;

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT