cawfree / react-native-simpler-date-picker

A simple date picker component with a focus on reducing implementation complexity.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@cawfree/react-native-simpler-date-picker

A simple date picker component with a focus on reducing implementation complexity.

@cawfree/react-native-simpler-date-picker

Are you using react-native-simple-date-picker? Don't. It's deprecated (and overcomplicated).

🚀 Getting Started

Using npm:

npm install --save @cawfree/react-native-simpler-date-picker

Using yarn:

yarn add @cawfree/react-native-simpler-date-picker

✍️ Example

It's really simple, just make sure you have moment.js installed so you can toy with the results.

import SimplerDatePicker from '@cawfree/react-native-simpler-date-picker';

const App = () => (
  <SimplerDatePicker
    minDate={Moment().subtract(1, 'days')}
    maxDate={Moment().add(1, 'days')}
    onDatePicked={console.log}
  />
);

That's all!

✌️ License

MIT

Buy @cawfree a coffee

About

A simple date picker component with a focus on reducing implementation complexity.

License:MIT License


Languages

Language:JavaScript 100.0%