simple-react-native-month-year-picker
Simple react native month year picker with modal
Simple react native month year picker with modal is a simple component inspired from react-native-month-picker.
install
npm install simple-react-native-month-year-picker --save
how to use
import MonthYearsPicker from simple-react-native-month-year-picker
<MontYearsPicker
isShow={this.state.pickerMonth}
onRequestClose={() => this.setState({ pickerMonth: false })}
years={(years) => console.log(years)}
month={(month) => console.log(month)}
/>