@maksymblank/react-native-date-input
v1.0.1
Published
React Native TextInput for dates
Downloads
5
Maintainers
Readme
react-native-date-input
React Native TextInput for dates and birthdays
Examples
Setup
npm i --save @maksymblank/react-native-date-input
# --- or ---
yarn add @maksymblank/react-native-date-input
Usage
import DateInput from '@maksymblank/react-native-date-input';
...
<DateInput
mask={'DD/MM/YYYY'}
onChange={date => console.log(date)}
validate={false} // true by default
activeColor={'red'} // #7368FF by default
/>
...