Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
440 changes: 440 additions & 0 deletions blog/2026-07-08-react-navigation-8.0-july-progress.md

Large diffs are not rendered by default.

Binary file not shown.
Binary file added static/assets/blog/8.x/shared-paths-deeplink.mp4
Binary file not shown.
Binary file added static/assets/blog/8.x/shared-paths.mp4
Binary file not shown.
Binary file added static/assets/blog/8.x/stack-retain-video.mp4
Binary file not shown.
Binary file not shown.
8 changes: 5 additions & 3 deletions versioned_docs/version-8.x/custom-navigators.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,11 @@ function TabNavigator({ tabBarStyle, contentStyle, ...rest }) {
});

if (!isFocused && !event.defaultPrevented) {
navigation.dispatch({
...TabActions.jumpTo(route.name, route.params),
target: state.key,
React.startTransition(() => {
navigation.dispatch({
...TabActions.jumpTo(route.name, route.params),
target: state.key,
});
});
}
}}
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-8.x/upgrading-from-7.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ To work with the reworked TypeScript types, the type API for custom navigators h
- }
+ export interface MyTypeBag extends NavigatorTypeBagBase {
+ State: TabNavigationState<this['ParamList']>;
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
+ ScreenOptions: MyNavigationOptions;
+ EventMap: MyNavigationEventMap;
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
+ Navigator: typeof MyNavigator;
+ }
+
Expand Down
Loading