magicismight / react-native-root-toast

react native toast like component, pure javascript solution
MIT License
2.08k stars 403 forks source link

change rounded borders #81

Open giacomomasseron opened 6 years ago

giacomomasseron commented 6 years ago

Hi,
is it possible to change the round of the borders?

tsrkalexandr commented 5 years ago

You can pass containerStyle to options object

Toast.show('Message', {
    duration: Toast.durations.LONG,
    containerStyle: {
        borderRadius: 20
    }
});