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 6e297bd453 example project added device info 7 years ago
android Added example project. Removed unnecessary files. 7 years ago
example example project added device info 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 Update README.md 7 years ago
index.js 1.0.0 7 years ago
package.json 1.0.2 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 @henninghall/react-native-date-picker

react-native link

Usage

import React, { Component } from 'react';
import { View, StyleSheet} from 'react-native';

import DatePicker from '@henninghall/react-native-date-picker';

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}
          style={styles.picker}
        />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    backgroundColor: 'white',
  },
  picker: { 
    width: 300, 
    height: 170,
  },
})