Package Exports
- react-native-date-picker-x
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-date-picker-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Native Date Picker
📅 A date picker component for React Native working on iOS and Android. It uses the default DatePickerIOS on iOS and a custom picker on Android which has similar look and feel.
Installation
yarn add react-native-date-picker-x
react-native link
Usage
import React, { Component } from 'react';
import { View, StyleSheet} from 'react-native';
import DatePicker from 'react-native-date-picker-x';
export default class App extends Component {
state = { chosenDate: new Date()}
setDate = (newDate) => this.setState({ chosenDate: newDate })
render() {
return (
<View style={styles.container}>
<DatePicker
date={this.state.chosenDate}
onDateChange={this.setDate}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'white',
},
})