From bdb29029c90cb32bb385a8c567cd9deba374ae0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Fri, 11 Aug 2023 20:37:08 +0200 Subject: [PATCH] Enabled page transitions --- lib/app.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.dart b/lib/app.dart index e3a60f6..391296b 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -57,7 +57,7 @@ class _AppState extends State { decoration: const NavBarDecoration( border: Border.symmetric(vertical: BorderSide.none, horizontal: BorderSide(color: Colors.grey, width: 1)) ), - screenTransitionAnimation: const ScreenTransitionAnimation(animateTabTransition: false, curve: Curves.ease, duration: Duration(milliseconds: 200)), + screenTransitionAnimation: const ScreenTransitionAnimation(animateTabTransition: true, curve: Curves.ease, duration: Duration(milliseconds: 200)), screens: const [ Breaker(breaker: BreakerArea.timetable, child: Timetable()), Breaker(breaker: BreakerArea.talk, child: ChatList()),