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
413 changes: 413 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.
16 changes: 10 additions & 6 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 Expand Up @@ -367,9 +369,11 @@ function TabNavigator({ tabBarStyle, contentStyle, ...rest }: Props) {
});

if (!isFocused && !event.defaultPrevented) {
navigation.dispatch({
...CommonActions.navigate(route.name, route.params),
target: state.key,
React.startTransition(() => {
navigation.dispatch({
...CommonActions.navigate(route.name, route.params),
target: state.key,
});
});
}
}}
Expand Down
4 changes: 3 additions & 1 deletion versioned_docs/version-8.x/standard-navigator.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,9 @@ export const MyTabNavigator = createStandardNavigator<
});

if (!isFocused && !event.defaultPrevented) {
actions.navigate(route.name, route.params);
React.startTransition(() => {
actions.navigate(route.name, route.params);
});
}
}}
style={{ flex: 1 }}
Expand Down
Loading