Closed diegodesouza closed 1 year ago
I have tried
textInputProps: {
label: 'Name',
style: {
borderRadius: 20,
borderColor: '#fff'
}
},
for future reference the props from TextInput
would be accepted in the textInputProps
textInputProps: {
label: 'Name',
outlineStyle: { borderRadius: 20, borderColor: '#fff' },
},
https://github.com/fateh999/react-native-paper-form-builder/blob/d0487b3bc5ff9f36370b2f985587633b6222acee/src/Inputs/InputText.tsx#L32C57-L32C57
Hi Fateh, Thanks for this work. I'm wondering how I could add custom styles, I was hoping to be able to do something like
These I am able to do while using the
TextInput
fromreact-native-paper
. Thanks again