Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[go_router] Fix(docs): Typo in Update navigation.md
Changed
```dart
context.go('/123, extra: 'abc');
```
to 
```dart
context.go('/123', extra: 'abc');
```
  • Loading branch information
MarinMikael authored Dec 3, 2023
commit 4e5a0b6b97f37ab21bb5e5205b21c6ec1e5d2195
2 changes: 1 addition & 1 deletion packages/go_router/doc/navigation.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ onTap: () => context.pop(true)
You can provide additional data along with navigation.

```dart
context.go('/123, extra: 'abc');
context.go('/123', extra: 'abc');
```

and retrieve the data from GoRouterState
Expand Down