You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Henning Hall 101ed2ce12 Cleanup. 7 years ago
android Cleanup. 7 years ago
example Minimum/maximum date support. 7 years ago
.gitignore example project added device info 7 years ago
.npmignore 1.0.2 7 years ago
LICENSE Create LICENSE 7 years ago
README.md Minimum/maximum date support. 7 years ago
index.js Minimum/maximum date support. 7 years ago
package.json 1.0.8 7 years ago

README.md

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',
  },
})

Goal

The goal is to make a cross platform variant of DatePickerIOS by implementing a Android variant with similar look and feel.

react native date picker

TODO