Skip to content

Commit

Permalink
fix links in blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Nov 6, 2024
1 parent f7e52d9 commit 162aeeb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions blog/2024-11-06-react-navigation-7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ author_image_url: https://avatars2.githubusercontent.com/u/1174278?s=200&v=4
tags: [announcement]
---

The documentation is now live at [reactnavigation.org](https://reactnavigation.org/getting-started), and v6 lives [here](/docs/6.x/getting-started).
The documentation is now live at [reactnavigation.org](/docs/getting-started), and v6 lives [here](/docs/6.x/getting-started).

React Navigation 7 aims to improve the developer experience with a new static API as well as bring many new features and improvements.

<!--truncate-->

## Highlights

- **Static API**: The new static API is an optional API that simplifies the configuration of navigators and makes it easier to work with TypeScript and deep linking.
- **Preloading screens**: Many navigators now support preloading screens prior to navigating to them. This can be useful to improve the perceived performance of the app by preloading the screens that the user is likely to navigate to next.
- **Layout props**: Navigators and screens now support `layout` props to augment the navigators with additional UI and behavior.
- **Improved Web integration**: The built in navigators now have better web-support such rendering anchor tags for more elements. The `Link` and `useLinkProps` APIs have also been revamped to use screen names instead of paths.
- **Searchbar support in all navigators with header**: All navigators with header now support a searchbar in the header. You can customize the searchbar using the `headerSearchBarOptions` option.
- **New `useLogger` devtool to replace flipper plugin**: The `use logger` hook can show navigation actions and state in the console for debugging.
- **Sidebar support in Bottom Tab Navigator**: The Bottom Tab Navigator now supports showing tabs on the side by specifying `tabBarPosition` option as `'left'` or `'right'`.
- **Animation support in Bottom Tab Navigator**: The Bottom Tab Navigator now supports animations when switching between tabs. You can customize the animation using the `animation` option.
- **`react-native-drawer-layout` package**: The drawer implementation used in `@react-navigation/drawer` is now available as a standalone package called `react-native-drawer-layout`.
- [**Static API**](/docs/hello-react-navigation?config=static): The new static API is an optional API that simplifies the configuration of navigators and makes it easier to work with TypeScript and deep linking.
- [**Preloading screens**](/docs/navigation-object/#preload): Many navigators now support preloading screens prior to navigating to them. This can be useful to improve the perceived performance of the app by preloading the screens that the user is likely to navigate to next.
- [**Layout props**](/docs/navigator#layout): Navigators and screens now support `layout` props to augment the navigators with additional UI and behavior.
- [**Improved Web integration**](/docs/web-support): The built in navigators now have better web-support such rendering anchor tags for more elements. The `Link` and `useLinkProps` APIs have also been revamped to use screen names instead of paths.
- [**Searchbar support in all navigators with header**](/docs/elements#headersearchbaroptions): All navigators with header now support a searchbar in the header. You can customize the searchbar using the `headerSearchBarOptions` option.
- [**New `useLogger` devtool to replace flipper plugin**](/docs/devtools#uselogger): The `use logger` hook can show navigation actions and state in the console for debugging.
- [**Sidebar support in Bottom Tab Navigator**](/docs/bottom-tab-navigator#tabbarposition): The Bottom Tab Navigator now supports showing tabs on the side by specifying `tabBarPosition` option as `'left'` or `'right'`.
- [**Animation support in Bottom Tab Navigator**](/docs/bottom-tab-navigator#animations): The Bottom Tab Navigator now supports animations when switching between tabs. You can customize the animation using the `animation` option.
- [**`react-native-drawer-layout` package**](/docs/drawer-layout): The drawer implementation used in `@react-navigation/drawer` is now available as a standalone package called `react-native-drawer-layout`.
- Many other improvements and bug fixes.

See our [blog post for the release candidate](/blog/2024-06-27-react-navigation-7.0-rc.md) for a more detailed list of highlights.
Expand Down

0 comments on commit 162aeeb

Please sign in to comment.