How to use NativeBase DatePicker
Check docs for Date Picker https://docs.nativebase.io/Components.html#date-picker-def-headref
Sample example from NativeBase KitchenSink https://github.com/GeekyAnts/NativeBase-KitchenSink/blob/master/src/screens/datepicker/index.js
Fixed with v2.5.2
Fixed in native-base v2.6.1 onwards.
<DatePicker
formatChosenDate={date => {return moment(date).format('YYYY-MM-DD');}}
..... />