1.0.9 • Published 1 year ago

react-native-year-month-pickers v1.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-native-year-month-pickers

This React-Native component library provides a seamless month and year picker for both Android and iOS platforms.

Examples

Install

Step 1

npm i react-native-year-month-pickers --save

or

yarn add react-native-year-month-pickers

Step 2

iOS

cd ios
pod install

Usage

Import library

import YearMonthPicker from "react-native-year-month-pickers";

Create required state variables

const [showPicker, setShowPicker] = useState(false);
const [monthYear, setMonthYear] = useState("");

Usage of the Month and Year value picker

<View>
  <Button title={"Show Date Picker"} onPress={() => setShowPicker(true)} />

  <YearMonthPicker
    show={showPicker}
    value={monthYear}
    onClose={() => setShowPicker(false)}
    onDone={(date) => {
      setMonthYear(date);
      setShowPicker(false);
    }}
  />
</View>

Request Object

PropertyRequiredTypeDescription
showYesbool (default false)Show or Hide year month picker
valueYesstring (default '')Selected date or empty string to show today's date
animationTypeNostringThis props used to show picker animation type like a Model acceptable values are fade, slide and none
primaryColorNostringA string color value of the picker
onCloseYesfunctionA callback function when hardware back button pressed in android or Cancel button pressed to close the picker
onDoneYesfunctionA callback function called when Done button pressed in picker and return a selected date as function argument

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

License

MIT

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago