Giter Club home page Giter Club logo

khieudinhhhuu / react-native-date-picker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from henninghall/react-native-date-picker

0.0 0.0 0.0 11.3 MB

React Native Date Picker is datetime picker for Android and iOS. It includes date, time and datetime picker modes. The datepicker is customizable and is supporting different languages. It's written with native code to achieve the best possible look, feel and performance.

License: MIT License

Shell 0.26% JavaScript 11.02% Ruby 0.54% Objective-C 3.04% Java 75.45% TypeScript 1.16% Objective-C++ 8.52%

react-native-date-picker's Introduction

React Native Date Picker npm Build status npm

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

๐Ÿ“ฑย  Supports iOS, Android and Expo
๐Ÿ•‘ย  3 different modes: Time, Date, DateTime
๐ŸŒย  Various languages
๐ŸŽจย  Customizable
๐Ÿ–ผย  Modal or Inlined

Modal

The first option is to use the built-in modal. See code.

React Native DateTime Picker Modal iOS React Native DateTime Picker Modal Android
iOSAndroid

Inlined

The second option is to use the inlined picker. Place it in a View or a custom made modal. See code.

React Native DateTime Picker React Native Date Time Picker
iOSAndroid

Requirements

  • Xcode >= 11.6
  • React Native >= 0.57.
  • If using React Native 0.64, 0.64.2 or later must be used.
  • If using Expo, SDK 42 or later must be used. If using Expo SDK 44, 44.0.4 or later must be used.

Expo

Installation

  1. Download package with npm or yarn
npm install react-native-date-picker
yarn add react-native-date-picker
  1. Install pods
cd ios && pod install
  1. Rebuild the project
npx react-native run-android
npx react-native run-ios

If you're having troubles after following these steps, there might be a linking issue.

Example 1: Modal

import React, { useState } from 'react'
import { Button } from 'react-native'
import DatePicker from 'react-native-date-picker'

export default () => {
  const [date, setDate] = useState(new Date())
  const [open, setOpen] = useState(false)

  return (
    <>
      <Button title="Open" onPress={() => setOpen(true)} />
      <DatePicker
        modal
        open={open}
        date={date}
        onConfirm={(date) => {
          setOpen(false)
          setDate(date)
        }}
        onCancel={() => {
          setOpen(false)
        }}
      />
    </>
  )
}

Example 2: Inlined

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

export default () => {
  const [date, setDate] = useState(new Date())

  return <DatePicker date={date} onDateChange={setDate} />
}

Props

Prop Description Screenshots iOS Screenshot Android
date The currently selected date.
onDateChange Date change handler ( Inline only )
fadeToColor Android picker is fading towards this background color. {color, 'none'}
maximumDate Maximum selectable date.
Example: new Date("2021-12-31")
minimumDate Minimum selectable date.
Example: new Date("2021-01-01")
androidVariant Choose from 2 android style variants. "iosClone", "nativeAndroid" Datepicker ios clone variantDatepicker android native variant
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" React native date time pickerReact native datepickerReact native time picker react native date time picker androidreact native datepicker androidreact native time picker 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. โš  Colors other than black (#000000) or white (#ffffff) will replace the "Today" string with a date on iOS 13 or higher. react native datepicker text color background color ios Text color background color android
timeZoneOffsetInMinutes Timezone offset in minutes (default: device's timezone)
dividerHeight Change the divider height (only supported for iosClone)
is24hourSource Change how the 24h mode (am/pm) should be determined, by device settings or by locale. {'locale', 'device'} (android only, default: 'device')
modal Boolean indicating if modal should be used. Default: "false". When enabled, the other modal props needs to be used. See example.
open Modal only: Boolean indicating if modal should be open.
onConfirm Modal only: Date callback when user presses confirm button
onCancel Modal only: Callback for when user presses cancel button or closing the modal by pressing outside it.
title Modal only: Title text. Can be set to null to remove text.
confirmText Modal only: Confirm button text.
cancelText Modal only: Cancel button text.
theme Modal only: The theme of the modal. "light", "dark", "auto". Defaults to "auto".

Additional android styling

There are some additional styling possibilities for the "androidNative" picker variant.

Divider color

react native date picker divider separator color

To change the divider color, open styles.xml and place this code right above the </resources>.

<style name="DatePickerTheme" parent="DatePickerBaseTheme">
    <item name="android:colorControlNormal">#dd00ff</item>
</style>

Button colors

date picker button colors on android

To change the confirm and cancel button colors. Open styles.xml and place this code within your theme.

  <item name="colorAccent">#dd00ff</item>

Font size

To change the font size on Android nativeAndroid variant. Open styles.xml and place this code right above the </resources>. The font size is not possible to change in iOS out of the box, but there are some iOS workarounds.

<style name="DatePickerTheme" parent="DatePickerBaseTheme">
    <item name="android:textSize">25sp</item>
</style>

React Native's new architecture

This package supports React Native's new architecture (Fabric + Turbo Modules) from React Native 0.71 and forward. Support was introduced in version 4.3.0 of react-native-date-picker.

Linking

This package supports automatic linking. Usually, the only thing you need to do is to install the package, the cocoapods dependencies (as described above). Then rebuild the project by running react-native run-ios, react-native run-android or start the build from within Xcode/Android Studio. If you're running a React Native version below 0.60 or your setup is having issues with automatic linking, you can run npx react-native link react-native-date-picker and rebuild. In some occations you'll have to manually link the package. Instructions in this issue.

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 french 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 french preference. On Android the 12/24h format is determined by the device setting by default. Add is24hourSource="locale" to let the locale determine the device setting on android as well. When using 12h mode the AM/PM part of the picker will be displayed. It is NOT recommended to force any specific 12/24h format, but this can be achieved by, choosing a locale which has the desired 24h preference and add is24hourSource="locale".

Is it possible to show only month and year?

This is unfortunately not possible due to the limitation in DatePickerIOS. You should be able to create your own month-year picker with for instance https://github.com/TronNatthakorn/react-native-wheel-pick.

Why does the Android app crash in production?

If you have enabled Proguard for Android you might need to ignore some classes to get the the picker to work properly 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

What does it take to upgrade to v4 (4.0.0)?

There are no breaking changes in v4, so just bump the version number in your package json.

Two different Android variants

On Android there are two design variants to choose from:

iOS cloneNative Android
date time picker date time picker
The so called "iOS clone" looks and works similar to the ios version. It shows normally 5 lines of dates. It is enabled by default. The "Android Native" version looks more like a standard native implementation on Android.
androidVariant = 'iosClone'
androidVariant = 'nativeAndroid'

Three different modes

Here are some more info about the three different picker modes that are available.

Date time picker

Using the datetime mode gives you a react native date time picker where both date and time can be selected at the same time. The todays date will be replays with the string "Today" translated to the desired language. This is the default mode and look like this.

iOSAndroid
date time picker date time picker

Add the optional datetime mode property to use this mode. Since datetime is default this could also be exclude.

<DatePicker
  ...
  mode="datetime"
/>

Datepicker

The date mode displays a react native datepicker with year month and date where the year-month-date order will be adjusted to the locale. If will look similar to this:

iOSAndroid
datepicker ios datepicker

Just add the value date to mode property:

<DatePicker
  ...
  mode="date"
/>

Time picker

The time mode can be used when only the time matters. AM/PM will be added depending on locale and user setting. It can be useful to add the timeInterval to only display the time with for instance 15min intervals. The react native time picker look like this:

iOSAndroid
react native time picker react native time picker android

Set mode property to time to show the time picker:

<DatePicker
  ...
  mode="time"
/>

About

React Native Date Picker is a cross platform component for iOS and Android. It uses native code from respective platform to get the genuine look and feel the users expect. A strong motivation for creating this picker was the datetime mode on Android. It's quite unique for the platform and avoids two different picker popups, which normally is necessary. Instead, this datetime mode requires fewer user actions and enables a great user-experience.

Support this package!

If you like this package, consider giving it a github star โญ

Also, PR's are welcome!

react-native-date-picker's People

Contributors

henninghall avatar dependabot[bot] avatar ineentho avatar mars-lan avatar mika-lindell avatar draperunner avatar khieudinhhuu avatar kida7 avatar hungneox avatar hlspablo avatar peterboyer avatar chengsam avatar spacarar avatar trustdec avatar anhtuank7c avatar unablehead avatar vikrantnegi avatar yarons avatar aureosouza avatar banghia112 avatar ipk2015 avatar rickturner2001 avatar simon-abbott avatar t0m0120 avatar 1mike12 avatar maksim-tolo avatar zaguiini avatar kentandersen avatar jorenvos avatar jencirjamal avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.