|
@@ -135,7 +135,7 @@ class FluroRouter {
|
|
|
AppRouteMatch? match = _routeTree.matchRoute(path!);
|
|
AppRouteMatch? match = _routeTree.matchRoute(path!);
|
|
|
AppRoute? route = match?.route;
|
|
AppRoute? route = match?.route;
|
|
|
|
|
|
|
|
- if (route?.transitionDuration != null) {
|
|
|
|
|
|
|
+ if (transitionDuration == null && route?.transitionDuration != null) {
|
|
|
transitionDuration = route?.transitionDuration;
|
|
transitionDuration = route?.transitionDuration;
|
|
|
}
|
|
}
|
|
|
|
|
|