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