react-native-modern-datepicker
react-native-modern-datepicker copied to clipboard
using with formik
when using datepicker inside Formik
days are not shown:
when datepicker moved outside of <Formik>
everything work just fine.
"react-native-modern-datepicker": "^1.0.0-beta.7", "formik": "^2.1.2",
<Formik
initialValues={{}}
onSubmit={onSubmit}
>
{({handleSubmit}) =>
<ScrollView
contentContainerStyle={styles.content}
showsVerticalScrollIndicator={false}
>
<DatePicker
name='date'
mode='monthYear'
/>
<Button
style={styles.saveBtn}
onPress={handleSubmit}
>
<Text bold style={styles.saveBtnText}>
بارگذاری
</Text>
</Button>
</ScrollView>
}
</Formik>
sorry for closing but it's not working all the times