From 8e7b213b4f531629917ca6b2644f3cd6c3b84f64 Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Sat, 18 Apr 2020 16:58:07 +0200 Subject: [PATCH] Updated animation to match fab --- src/components/Custom/AnimatedBottomBar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }