-
-
Notifications
You must be signed in to change notification settings - Fork 452
Open
Labels
Description
Hi, i am new to react-native-windows
I try to change datetimepicker border width, font and font size using style props but nothing change
here is my code:
`
<DateTimePicker
style={[globalStyle.textInput, {width: 150, height: 25, minHeight: 25, fontSize: 10, borderWidth: 0}, props.inputStyle]}
value={props.dateValue}
mode='date'
display="default"
onChange={(event, selectedDate) => props.onDateChange(event, selectedDate)}
/>
`
Please help