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 337fb7321d Updated picker images 6 years ago
android Removed nullable 6 years ago
docs Updated picker images 6 years ago
examples Add detox example 6 years ago
ios Keep "Today"-string when changing text color. (#83) 6 years ago
.gitignore example project added device info 7 years ago
.npmignore Custom width and height + Layout improvements (#82) 6 years ago
DatePickerAndroid.js Change width and height (#80) 6 years ago
DatePickerIOS.js Keep "Today"-string when changing text color. (#83) 6 years ago
LICENSE Create LICENSE 7 years ago
README.md Update README.md 6 years ago
index.d.ts Add missing property in typescript decleration 6 years ago
index.js Added textColor property (ios) 7 years ago
npmREADME.md Updated npm readme 7 years ago
package.json 2.6.1 6 years ago
react-native-date-picker.podspec Renamed podspec file. 7 years ago

README.md

React Native Date Picker npm Build status npm

This is a React Native Date Picker with following main features:

📱 Supporting iOS and Android
🕑 3 different modes: Time, Date, DateTime
🌍 Multiple languages
🎨 Customizable

iOS Android
React Native Date Picker React Native Date Picker Android
A slightly improved DatePickerIOS. A custom made native component.

Installation

  1. npm install react-native-date-picker --save
  2. react-native link react-native-date-picker (Only needed for React Native <= 0.59)

Minimal Example

import React, { Component } from 'react';
import DatePicker from 'react-native-date-picker';

export default class App extends Component {

  state = { date: new Date() }

  render = () =>
    <DatePicker
      date={this.state.date}
      onDateChange={date => this.setState({ date })}
    />

}

Properties

Prop Description Screenshots iOS Screenshot Android
date The currently selected date.
onDateChange Date change handler
fadeToColor Android picker is fading towords this background color. {color, 'none'}
maximumDate Maximum selectable date.
minimumDate Minimum selectable date
minuteInterval The interval at which minutes can be selected. Date picker minute interval IOS Date picker minute interval Android
mode The date picker mode. {'datetime', 'date', 'time'} Datepicker datetime mode iosdate mode iostime mode ios react native datetime mode androiddate mode androidtime mode android
locale The locale for the date picker. Changes language, date order and am/pm preferences. Value needs to be a Locale ID. React Native Date picker locale language ios React Native Date picker locale language android
textColor Changes the text color. react native datepicker text color background color ios Text color background color android
timeZoneOffsetInMinutes Timezone offset in minutes (default: device's timezone)

About

📅   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.

FAQ

How do i change the date order? (To YYYY-MM-DD etc)

The order is determined by the locale prop. Set for instance locale='fr'to get the France preference.

How do i change the 12/24h or AM/PM format?

On iOS the 12/24h preference is determined by the locale prop. Set for instance locale='fr'to get the France preference. On Android the 12/24h format is determined by the device setting. When using 12h mode the AM/PM part of the picker will be displayed.

Why is the Android app crashing in production?

If you have enabled Proguard for Android you might need to ignore some classes to get the the picker to work propery in android production/release mode. Add these lines to you proguard file (often called proguard-rules.pro):

-keep public class net.time4j.android.ApplicationStarter
-keep public class net.time4j.PrettyTime

Roadmap

Why another React Native date picker?

One of the strongest reason to use react native is its cross platform compatibility. Most of the official components are working seemlessly on both platforms but there are some with single platform support only. The react native datepicker is one example where both DatePickerIOS and DatePickerAndroid are present. The reason for this is that the default date picker is implemented in seperate ways, iOS normally have an integrated view picker wheel where android has different pickers in a dialog format.

If you want to use these pickers you can combile the official ones or a third party module that already done that for you. If you on the other hand want have a more unified design between your android and ios app, this module is for you. The datetime mode can be particular helpful to avoid 2 separate picker dialogs on android.