Browse Source

Updated animation to match fab

Arnaud Vergnet 4 years ago
parent
commit
8e7b213b4f
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/components/Custom/AnimatedBottomBar.js

+ 2
- 2
src/components/Custom/AnimatedBottomBar.js View File

@@ -57,9 +57,9 @@ class AnimatedBottomBar extends React.Component<Props, State> {
57 57
     onHideChange = (shouldHide: boolean) => {
58 58
         if (this.ref.current) {
59 59
             if (shouldHide)
60
-                this.ref.current.fadeOutDown(600);
60
+                this.ref.current.bounceOutDown(1000);
61 61
             else
62
-                this.ref.current.fadeInUp(500);
62
+                this.ref.current.bounceInUp(1000);
63 63
         }
64 64
     }
65 65
 

Loading…
Cancel
Save