We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d061b41 commit 084c564Copy full SHA for 084c564
lib/src/route_manager.dart
@@ -53,7 +53,8 @@ class RouteManager extends StatelessWidget {
53
pod: controller.pRouteState,
54
cacheDuration: null,
55
builder: (context, snapshot) {
56
- Widget child = RepaintBoundary(child: controller.buildScreen(context, snapshot.value!));
+ Widget child;
57
+ child = RepaintBoundary(child: controller.buildScreen(context, snapshot.value!));
58
if (clipToBounds) {
59
child = ClipRect(child: child);
60
}
0 commit comments