Routing and navigation for React Native and Web apps. Maintained by @satya164

React Navigation retweeted
What does it take to build React Native's navigation system? 🧭 @satya164 goes behind the scenes of React Navigation 8 at reactnativeCon Berlin. Learn more: eu1.hubs.ly/H0yzD330 #nextapp26 #ReactNative
2
4
228
Thanks @DelphineBugner as well for the amazing conference and drawings
Replying to @ReactNativeConn
@ReactNativeConn 2026 is a wrap! This year’s theme was Monet and Impressionism so obviously the drawings came back; this time with a focus on the speakers, who truly did an amazing work for all of their talks πŸ’™ cheers to @FilipKaminski @ziusko @zoontek & @uffoltzl !
4
878
We're adding an AI Usage Policy to the React Navigation repo. AI helps us move fast, but we believe humans should still have understanding of systems they are working on. It also must not replace human interaction. Open Source is about collaboration. Let's keep it that way. github.com/react-navigation/…
2
6
90
4,933
The new Stack in Screens 5 is getting closer and closer 😍
React Native Screens 5.0.0-alpha.3 released! Stack v5 gains more header customization on Android and iOS; FormSheet v5 adds stacking; iOS supports SPM. swmansion.com/changelog/reac…
2
5
66
8,383
React Native Screens 4.28.0 released! Android fixes: tab bar layout after configuration changes, stable tab item ids, and a use-after-free crash. swmansion.com/changelog/reac…
6
45
2,782
React Navigation retweeted
Copilot knows what's up.
1
16
1,068
React Navigation retweeted
Here's how I'd start a React Native app today if I want it to be native: USE THE PLATFORM, don't reinvent the wheel. My must-haves: - react-native-screens from @swmansion, together with @reactnavigation. Native stack, native tabs, formSheet for bottom sheets, native modals, SF Symbols, Material Symbols, etc. Keep an eye on v5. - expo-ui from @expo for SwiftUI and Jetpack Compose components in JSX. Missing one? Have AI write it and contribute it back. - Nitro Modules from @margelo_io for low-level, fast native code (Swift, Kotlin, C++). Some good examples: react-native-mmkv for key-value storage (a must), react-native-healthkit, react-native-nitro-fetch. - expo-sqlite + drizzle-orm from @DrizzleORM if you need a local database. - Legend State from @jmeistrich. Write proper selectors, watch your re-renders, and close subscriptions on unfocused screens (think Android onResume/onPause). Be methodical. This is not the web, and React Compiler won't do it for you. - Do not block your app startup with anything. You should not need a splash screen if you don't want one. Use whatever tools you want. But React Native does not mean your app isn't native under the hood. Your iOS and Android builds end up very, very different, on purpose. You're just using abstractions that smart people built and keep curating for you. Do this and when something like the iPhone Duo comes out, your app just works on it. You were already using native navigation, sheets and components, so the platform adapts them for you.
18
23
279
17,103
React Navigation retweeted
react-native-screen-choreography 0.5.0 is out πŸš€ Smoother shared transitions, zero rerenders during animations, and 60 FPS on Android and iOS. Works with Expo Router and React Navigation. Free and open-source.
9
14
165
6,074
React Navigation retweeted
While others imagine what life will be like after iPhone Duo drops (there won’t be any way to test it until Xcode 27.1), we’re focusing on what’s here and now. There are lots of cool improvements Apple is bringing with iOS 27: πŸ‘‰ header minimization and restoration behavior πŸ‘‰ prominent tab (no need for workarounds with search) πŸ‘‰ header item visibility priority πŸ‘‰ placing tabs in the sidebar (larger iPhones only), and more We’ll support all of it in upcoming versions of react-native-screens. Oh, and iPhone Duo will be supported as well 🫑
7
32
319
37,022
React Navigation retweeted
When you get a bit impatient waiting for React Navigation 8 @satya164
2
14
734
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
5
33
5,357
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 features map cleanly.
2
4
76
8,338
React Navigation retweeted
Would not have been possible without independent navigation containers from react navigation... so THANK YOU react navigation
11
6
204
6,916
React Navigation 8 will support matching multiple path segments for links. Check out the docs: reactnavigation.org/docs/8.x…
2
10
1,080
React Navigation retweeted
React Navigation is so good they also want it in Flutter.
it says react-navigation in his screenshot 😭 first time i see that in flutter
1
3
32
3,934
React Navigation retweeted
If the screen component itself is lazy loaded, you can do it in `screenLayout`. The core idea is to render a placeholder instead of screen content, and keep the same placeholder rendered until your screen's data is ready. For something that works with suspense, something like this should work - use a never ending promise to keep showing suspense fallback and switch to screen content on focus, which might also suspend keeping the fallback visible. And you'd placeholder content in suspense fallback. Though I'm not sure about the best way to provide a built-in option that'd work similarly yet.
2
5
595
React Navigation retweeted
Unfortunately, enabling `lazy` results in a flicker when you tap a tab for the first time. The native component switches to the selected tab before React receives the event. So you can see a blank screen for a split second before the tab navigator re-renders with the screen content. So it's not possible to provide a proper solution in React Navigation at this time. An alternative is to render a placeholder component on the screen and keep it until data is loaded, then render the actual screen content. I discussed it with @kafara_kacper, and we need to experiment if there is a viable approach to avoid the flicker. We'll also explore how we can provide a built-in option for a placeholder component in React Navigation that works as I described.
1
1
9
657
React Navigation retweeted
iOS 27 scrolls content to the top when you tap the navigation bar. If you have a Pressable in the header, that's probably not what you want. react-native-screens now has an experimental <ScrollToTopGuard>. Wrap your custom view in it and the tap won't scroll to the top.
2
14
150
12,079
React Navigation retweeted
Congrats to my friend @stachbial for merging his first PR in @reactnavigation repo πŸŽ‰
1
2
21
1,492