diff --git a/src/components/Custom/AnimatedBottomBar.js b/src/components/Custom/AnimatedBottomBar.js index b14f561..c0bd9ca 100644 --- a/src/components/Custom/AnimatedBottomBar.js +++ b/src/components/Custom/AnimatedBottomBar.js @@ -57,9 +57,9 @@ class AnimatedBottomBar extends React.Component { onHideChange = (shouldHide: boolean) => { if (this.ref.current) { if (shouldHide) - this.ref.current.fadeOutDown(600); + this.ref.current.bounceOutDown(1000); else - this.ref.current.fadeInUp(500); + this.ref.current.bounceInUp(1000); } }