1.0.0 • Published 3 years ago

react-native-simple-calendar-new v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-native-simple-calendar

The module have simple calender

Installation

image

npm install react-native-simple-calendar

Usage

import { Calendar } from 'react-native-simple-calendar';

// ...

<View style={styles.container}>
  <Calendar onChange={(date)=> this.setState({date})} MinYY={1922} MaxYY={2022}/>
  {
      this.state.date &&
      <Text>{this.state.date.DD}-{this.state.date.MMM}-{this.state.date.YYYY}</Text>
    }
</View>

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT