1
0
mirror of https://github.com/GitJournal/GitJournal.git synced 2025-07-20 21:25:48 +08:00

Repo Selector: Fix animation

Urgh. This took way too long.
This commit is contained in:
Vishesh Handa
2021-02-04 17:13:06 +01:00
parent 7d259715cf
commit 07b6c6e099

@ -39,7 +39,7 @@ class _AppDrawerState extends State<AppDrawer>
animController =
AnimationController(duration: 250.milliseconds, vsync: this);
slideAnimation = Tween(begin: const Offset(0.0, -1.0), end: Offset.zero)
slideAnimation = Tween(begin: const Offset(0.0, -0.5), end: Offset.zero)
.animate(animController);
sizeAnimation = Tween(begin: 0.0, end: 1.0).animate(animController);
}