File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/content/ui/navigation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ animations for the target platform. To navigate to a new screen, access the
2020` Navigator ` through the route's ` BuildContext ` and call imperative methods such
2121as ` push() ` ` or pop() ` :
2222
23- <? code-excerpt "examples/ ui/navigation/lib/navigator_basic.dart (push-route)"?>
23+ <? code-excerpt "ui/navigation/lib/navigator_basic.dart (push-route)"?>
2424``` dart
2525child: const Text('Open second screen'),
2626onPressed: () {
@@ -48,7 +48,7 @@ Applications with simple navigation and deep linking requirements can use the
4848` Navigator ` for navigation and the [ ` MaterialApp.routes ` ] [ ] parameter for deep
4949links:
5050
51- <? code-excerpt "examples/ ui/navigation/lib/navigator_named_routes.dart (push-route)"?>
51+ <? code-excerpt "ui/navigation/lib/navigator_named_routes.dart (push-route)"?>
5252``` dart
5353child: const Text('Open second screen'),
5454onPressed: () {
@@ -83,7 +83,7 @@ To use the Router, switch to the `router` constructor on `MaterialApp` or
8383such as [ go_router] [ ] , typically provide a
8484configuration for you. For example:
8585
86- <? code-excerpt "examples/ ui/navigation/lib/navigator_router.dart (push-route)"?>
86+ <? code-excerpt "ui/navigation/lib/navigator_router.dart (push-route)"?>
8787``` dart
8888child: const Text('Open second screen'),
8989onPressed: () => context.go('/second'),
You can’t perform that action at this time.
0 commit comments