# Question On iOS it works fine but on Android it doesn't even show the buttons <!-- Before submitting it, please ensure that this was not already asked in another issue, or on StackOverflow. Ideally, you should always refer to StackOverflow first. Ideally, this issue should culminate in a PR to the documentation for this library so that future developers will have that doubt cleared. This issue should serve for you to ask a question about the library to the maintainers and other fellow developers - remember that even if the issue gets closed, the conversation can move forward 🤗 --> # CODE View style={styles.section}> <Text style={styles.text}>{i18n.t('date')}:</Text> <RNDateTimePicker mode="date" onChange={handleConfirmDate} locale={i18n.locale} value={new Date(eventItem.start_at)} /> <RNDateTimePicker mode="time" onChange={handleConfirmStartTime} locale={i18n.locale} value={new Date(eventItem.start_at)} /> <RNDateTimePicker mode="time" onChange={handleConfirmEndTime} locale={i18n.locale} value={new Date(eventItem.end_at)} /> </View