Skip to content

Commit d8524e9

Browse files
committed
Fix link color overrides
1 parent c7b42f6 commit d8524e9

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ const RootStack = createNativeStackNavigator({
5858

5959
Loaders works with data fetching libraries rather than replacing them. So you can use your existing data fetching setup that uses libraries like [TanStack Query](https://tanstack.com/query/latest/docs), [SWR](https://swr.vercel.app/docs/prefetching), [Apollo Client](https://www.apollographql.com/docs/react/api/react/preloading), [Relay](https://relay.dev/docs/api-reference/load-query/), [RTK Query](https://redux-toolkit.js.org/rtk-query/usage/prefetching), [urql](https://nearform.com/open-source/urql/docs/basics/react-preact/) etc.
6060

61-
This is an experimental feature and is only available with [static configuration](/docs/8.x/static-configuration). The API is currently minimal as we focused on the core functionality. We plan to expand it based on user feedback.
61+
This is an experimental feature in it's early stages and is only available with [static configuration](/docs/8.x/static-configuration). The API is currently minimal as we focused on the core functionality and suspense integration.
6262

6363
See [Data loading documentation](/docs/8.x/data-loading) for more details.
6464

65+
Checkout the [RFC](https://github.com/react-navigation/react-navigation/discussions/13177) and leave your feedback on the API, behavior, use cases, and any other ideas you have.
66+
6567
Many thanks to [Michał Osadnik](https://x.com/mosdnk) for implementing this feature.
6668

6769
### Typed hooks in dynamic navigators
@@ -151,9 +153,9 @@ We have reworked this to be significantly shorter and simpler:
151153
- }
152154
+ export interface MyTabTypeBag extends NavigatorTypeBagBase {
153155
+ State: TabNavigationState<this['ParamList']>;
156+
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
154157
+ ScreenOptions: MyNavigationOptions;
155158
+ EventMap: MyNavigationEventMap;
156-
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
157159
+ Navigator: typeof TabNavigator;
158160
+ }
159161
+

versioned_docs/version-8.x/upgrading-from-7.x.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ To work with the reworked TypeScript types, the type API for custom navigators h
203203
- }
204204
+ export interface MyTypeBag extends NavigatorTypeBagBase {
205205
+ State: TabNavigationState<this['ParamList']>;
206+
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
206207
+ ScreenOptions: MyNavigationOptions;
207208
+ EventMap: MyNavigationEventMap;
208-
+ ActionHelpers: TabActionHelpers<this['ParamList']>;
209209
+ Navigator: typeof MyNavigator;
210210
+ }
211211
+

0 commit comments

Comments
 (0)