Log inSign up
React Navigation
582 posts
React Navigation profile banner
@reactnavigation

React Navigation

@reactnavigation
Routing and navigation for React Native and Web apps. Maintained by @satya164
reactnavigation.org
Joined February 2018
9
Following
11K
Followers
RepliesRepliesRepostsRepostsMediaMedia

Log in or sign up for X

See what’s happening and join the conversation

Continue with phone
or
Log in with username or email
Terms·Privacy·Cookies·Accessibility·Ads Info·© 2026 X Corp.
  • @reactnavigation
    React Navigation
    @reactnavigation
    Aug 26
    Spotted in the wild: React Navigation + GTK on Linux 👀 Happy to see the platform-agnostic core of React Navigation finally get some usage 😊 gtkx.dev/blog/gtkx-1-4
  • @reactnavigation
    React Navigation
    @reactnavigation
    Aug 24
    React Navigation 8 has one of the richest grammars* for URL patterns. This means you get more flexibility for your app's URLs, for deep links, and for browsers. Plus custom parse functions and standard schema for params mean they are type-safe in static config. *Not all
    | Pattern grammar     | React Navigation | Expo Router     | Next.js          | TanStack Router | React Router |
| ------------------- | ---------------- | --------------- | ---------------- | --------------- | ------------ |
| Static              | ✅ `users`       | ✅ `users`      | ✅ `users`       | ✅ `users`      | ✅ `users`   |
| Optional static     | ❌               | ❌              | ❌               | ❌              | ✅ `edit?`   |
| Required param      | ✅ `:id`         | ✅ `[id]`       | ✅ `[id]`        | ✅ `$id`        | ✅ `:id`     |
| Optional param      | ✅ `:id?`        | ❌              | ❌               | ✅ `{-$id}`     | ✅ `:id?`    |
| Repeatable param 1+ | ✅ `:rest+`      | ✅ `[...rest]`  | ✅ `[...rest]`   | ❌              | ❌           |
| Repeatable param 0+ | ✅ `:rest*`      | ❌              | ✅ `[[...rest]]` | ❌              | ❌           |
| Unmatched/Catch-all | ✅ `*`           | ✅ `+not-found` | ✅ `not-found`   | ✅ `$`          | ✅ `*`       |
| Regex
    1
  • @reactnavigation
    React Navigation
    @reactnavigation
    Aug 20
    React Navigation 8 will support matching multiple path segments for links. Check out the docs: reactnavigation.org/docs/8.x/confi…
    // Matches /files/a and /files/a/b
'files/:parts+'

// Matches /files, /files/a and /files/a/b
'files/:parts*'
  • @reactnavigation
    React Navigation
    @reactnavigation
    Jul 24
    Soon @​react-navigation/native will work on web without react-native-web! 👀
    1
  • @reactnavigation
    React Navigation
    @reactnavigation
    Jul 23
    If you had issues with React Navigation's drawer not opening/closing correctly, check these versions out 👇 Thanks to the Reanimated team for the fix 🙏
    @tomekzaw_
    Tomasz Zawadzki
    @tomekzaw_
    Jul 23
    We've released 3 patch releases of Reanimated with a fix for stale animated props for settled animations: ➡️ [email protected] ➡️ [email protected] ➡️ [email protected] github.com/software-mansi…