1.0.1 • Published 4 years ago

react-native-weekday-date-picker v1.0.1

Weekly downloads
289
License
MIT
Repository
github
Last release
4 years ago

Summary

This is React Native modules to wrap iOS (only) Weekday date picker https://github.com/bagofstars/WeekdayDatePicker

Installation

Using npm:

npm install --save react-native-weekday-date-picker

or using yarn:

yarn add react-native-weekday-date-picker

If you are using RN < 0.60.0

Automatically linking

react-native link react-native-weekday-date-picker

Manual linking

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-weekday-date-picker and add WeekdayPicker.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libWeekdayPicker.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)

Usage

import DatePicker from 'react-native-weekday-date-picker';

<DatePicker
  style={{ flex: 1 }}
  date={dateValue}
  minimumDate={minDate}
  maximumDate={maxDate}
  onDateChange={selectedDate => {
    setDateValue(selectedDate);
  }}
/>;
1.0.1

4 years ago

1.0.0

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago