|
7 years ago | |
---|---|---|
android | 7 years ago | |
docs | 7 years ago | |
example | 7 years ago | |
ios | 7 years ago | |
temp | 7 years ago | |
.gitignore | 7 years ago | |
.npmignore | 7 years ago | |
DatePickerAndroid.js | 7 years ago | |
DatePickerIOS.js | 7 years ago | |
LICENSE | 7 years ago | |
README.md | 7 years ago | |
index.js | 7 years ago | |
package.json | 7 years ago |
📱 Supporting iOS and Android
🌍 Multiple languages
🎨 Customizable
iOS | Android (Smoother in reality) |
![]() |
![]() |
npm install react-native-date-picker-x
or
yarn add react-native-date-picker-x
react-native link
import React, { Component } from 'react';
import DatePicker from 'react-native-date-picker-x';
export default class App extends Component {
state = { date: new Date() }
render = () =>
<DatePicker
date={this.state.date}
onDateChange={date => this.setState({ date })}
/>
}
import React, { Component } from 'react';
import DatePicker from 'react-native-date-picker-x';
const today = new Date();
const tomorrow = new Date(new Date().getTime() + 24 * 60 * 60 * 1000);
export default class App extends Component {
state = { date: new Date() }
render = () =>
<DatePicker
date={this.state.date}
onDateChange={date => this.setState({ date })}
locale={'en-US'}
minuteInterval={5}
minimumDate={today}
maximumDate={tomorrow}
textColor={'#ffffff'}
fadeToColor={'#000000'}
/>
}
📅 React Native Date Picker is a cross platform component working on both iOS and Android. It uses the slightly improved DatePickerIOS on iOS and a custom picker on Android which has similar look and feel. The datetime mode might be particulary interesting if you looking for a way to avoid two different popup pickers on android.