chore: Disable page transition in column mode

This commit is contained in:
krille-chan 2024-05-30 08:36:08 +02:00
commit f01d507e19
No known key found for this signature in database

View file

@ -445,13 +445,10 @@ abstract class AppRoutes {
Widget child, Widget child,
) => ) =>
FluffyThemes.isColumnMode(context) FluffyThemes.isColumnMode(context)
? CustomTransitionPage( ? NoTransitionPage(
key: state.pageKey, key: state.pageKey,
restorationId: state.pageKey.value, restorationId: state.pageKey.value,
child: child, child: child,
transitionsBuilder:
(context, animation, secondaryAnimation, child) =>
FadeTransition(opacity: animation, child: child),
) )
: MaterialPage( : MaterialPage(
key: state.pageKey, key: state.pageKey,