react-native-root-toast icon indicating copy to clipboard operation
react-native-root-toast copied to clipboard

change rounded borders

Open giacomomasseron opened this issue 7 years ago • 1 comments

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

giacomomasseron avatar Jul 14 '18 22:07 giacomomasseron

You can pass containerStyle to options object

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

tsrkalexandr avatar Nov 26 '18 07:11 tsrkalexandr