Skip to content

Commit 9bc0d4a

Browse files
committed
Add june progress blog post
1 parent 58c6541 commit 9bc0d4a

7 files changed

Lines changed: 445 additions & 3 deletions

File tree

blog/2026-07-08-react-navigation-8.0-july-progress.md

Lines changed: 440 additions & 0 deletions
Large diffs are not rendered by default.
795 KB
Binary file not shown.
2.96 MB
Binary file not shown.
2.29 MB
Binary file not shown.
1.55 MB
Binary file not shown.
112 KB
Binary file not shown.

versioned_docs/version-8.x/custom-navigators.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,11 @@ function TabNavigator({ tabBarStyle, contentStyle, ...rest }) {
121121
});
122122

123123
if (!isFocused && !event.defaultPrevented) {
124-
navigation.dispatch({
125-
...TabActions.jumpTo(route.name, route.params),
126-
target: state.key,
124+
React.startTransition(() => {
125+
navigation.dispatch({
126+
...TabActions.jumpTo(route.name, route.params),
127+
target: state.key,
128+
});
127129
});
128130
}
129131
}}

0 commit comments

Comments
 (0)