We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how can I close the calendar without selecting any date?
The text was updated successfully, but these errors were encountered:
@HadisSharif What do you mean by closing the calendar?
Sorry, something went wrong.
you can show it in modal this.setState({ isShowPiker: true});
this.setState({ isShowPiker: true});
and after that close modal this.setState({ isShowPiker: false });
this.setState({ isShowPiker: false });
<Modal style={styles.modal} animationType="slide" transparent={true} visible={this.state.isShowPiker} onRequestClose={() => { this.closePicker() }} > <View style={styles.modalWrapperView}> <View style={styles.modalInnerWrapper}> <PersianCalendarPicker onDateChange={this.onDateChange} selectedBackgroundColor="red" allowRangeSelection = {true} isRTL = {true} /> </View> </View> </Modal>
No branches or pull requests
how can I close the calendar without selecting any date?
The text was updated successfully, but these errors were encountered: