OnBoarding BottomBar: Add an animation

Now the "Get Started" button opens up with an animation!
This commit is contained in:
Vishesh Handa
2019-02-16 12:15:33 +01:00
parent 0a2c1d0b92
commit b28dc47702

View File

@ -97,7 +97,10 @@ class OnBoardingScreenState extends State<OnBoardingScreen> {
child: pageView,
padding: EdgeInsets.all(16.0),
),
bottomNavigationBar: bottomBar,
bottomNavigationBar: AnimatedSwitcher(
duration: Duration(milliseconds: 300),
child: bottomBar,
),
);
}