chore: Disable page transition in column mode

pull/1146/head
krille-chan 1 year ago
parent 15c6926fe1
commit f01d507e19
No known key found for this signature in database

@ -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,

Loading…
Cancel
Save