Open cmdillon opened 8 years ago
Hello, you can use widgetStyles prop in the TextInputWidget component
widgetStyles={{
textInput: {
// your style
}
}}
or you can set a global style using formStyles prop in the GiftedForm component
formStyles={{
TextInputWidget: {
textInput: {
// your style
}
}
}}
thanx, for the info. i initially tried that , but it seems not to work for me. i tried changing the background color and height, but nothing happened. my react-native version: 0.19.0
any ideas?
please try
widgetStyles={{
textInputInline: {
// your style
}
}}
sweet! that was it—thanx!
hi! i was wondering if it's possible to custom style the text input fields. if so, how?