FaridSafi / react-native-gifted-form

📝 « One React-Native form component to rule them all »
MIT License
1.44k stars 214 forks source link

removing border stying #123

Open katawura opened 6 years ago

katawura commented 6 years ago

I am trying to remove the bottom border styling from the form so got this in place

                            formStyles={{
                                TextInputWidget: {
                                    underlineIdle: {
                                        borderBottomWidth: 2,
                                        borderColor: 'red',
                                    },
                                    underlineFocused: {
                                        borderBottomWidth: 2,
                                        borderColor: '#3498db',
                                    },
                                },
                            }}

But doesn't seem to work. Any ideas?