i was able to open date picker with button i am trying to open it with text input
here is i how i open my calender
<Button onPress={displayDatepicker} title="Show date picker!" />
i am looking for something like this that will open the calender when clicked on textinput fild
<TextInput
style={styles.forminput}
label=" Date of Birth"
value=""
onclick={displayDatepicker}
/>
2
Answers
Try this maybe it will work.
or this will also work,
You can wrap your code like this,