Updated animation to match fab

这个提交包含在:
Arnaud Vergnet 2020-04-18 16:58:07 +02:00
父节点 7f5ade5999
当前提交 8e7b213b4f

查看文件

@ -57,9 +57,9 @@ class AnimatedBottomBar extends React.Component<Props, State> {
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);
}
}