rn-nepali-datepicker
v1.0.3
Published
Simple nepali Datepicker
Downloads
1
Maintainers
Readme
rn-nepali-datepicker
Nepali Datepicker
Installation
npm install rn-nepali-datepicker
Usage
import React, {useState} from 'react'
import {View, Text, StyleSheet} from 'react-native'
import DatePicker from "rn-nepali-datepicker";
const MyComponent=()=> {
const [date, setDate] = useState('')
//..
return(
// ...
<View>
<DatePicker
dateFormat='%D, %M %d, %y'
onDateChange={(text)=>setDate(text)}
selectedDefaultDate='yyyy-mm-dd'
fromDate='yyyy-mm-dd' toDate='yyyy-mm-dd'
edit={boolean}/>
</View>
)
}
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT