KBLNY / react-native-message-bar

A notification bar alert displayed at the top of the screen for react-native
MIT License
442 stars 125 forks source link

Message alert displays very slow #33

Open GrishmaM opened 7 years ago

GrishmaM commented 7 years ago

After my api call i'm setting the error message to messageBar, but it take too long to appear on screen

y is it so ?

marlti7 commented 7 years ago

me too. even if durationToShow set to 0.

marlti7 commented 7 years ago

durationToShow: props.durationToShow || 350 is not right.but when i set to 1, displays always very slow

prawee commented 7 years ago

ctrl + T is solve

marlti7 commented 7 years ago

duration: props.duration || 3000, this statement is wrong(when duration is 0). the right: duration: props.duration !== 'undefined' ? props.duration : 3000