xgfe / react-native-datepicker

react native datePicker component for both Android and IOS, useing DatePikcerAndroid, TimePickerAndroid and DatePickerIOS
MIT License
2.12k stars 726 forks source link

Graphic Problem #347

Closed keyz23 closed 5 years ago

keyz23 commented 5 years ago

Hi guys, I have a problem to change the graph of this datapicker. Basically I should use it in a form. I'm looking to change the graph aspect, expecially I would change the rettangle in a line

Schermata 2019-07-03 alle 10 13 45

I would change in a line with the text above. Thank you.

gcoro commented 5 years ago

You can use the customStyles prop to overwrite default style:

<DatePicker
    // other props
    customStyles={{ 
        dateInput: {
        borderWidth: 0,
        borderBottomWidth: 1,
            // etc
        }
    }}
/>
keyz23 commented 5 years ago

Thank you!