Couldnβt agree more! The software keyboard behaviour and padding is easily missed when developing solely on sim- /emulators. β¨οΈ
Couldnβt agree more! The software keyboard behaviour and padding is easily missed when developing solely on sim- /emulators. β¨οΈ
π€β€οΈ RNR 355 β€οΈπ€
This week: React Native Skia for HighβPerformance UI with the one and only @wcandillon.bsky.social!
@mazenchami.dev and @robinheinze.dev talk Skia, shaders, WebGPU, and how to make React Native UIs feel as polished as native apps. πͺ
Listen here π
infinite.red/react-native...
Woah - autotranslate feature via Google Translate is so cool! π₯
A screenshot of the i18n Ally Editor tab in VSCode with a list of translations for each supported language.
I just discovered the i18n Ally VSCode plugin, which has some super neat features for managing local translations in your codebase. I seem to have some trouble getting it working with TS files in a React project but works like a dream in projects with JSON translation files! Link in thread below π
This is game-changing π
Nice! Canβt wait for the next episode to drop π§
Great post from Julian on how to create app variants with @expo.dev. Thereβs some neat tricks on how to declare your configs in @typescriptlang.org and also pointers on how to leverage the `extra` property too. Check it out below π
Hope this helps any iOS devs out there ποΈ
Expo SDK 55 is out π
RN 0.83, React 19.2 & a long list of things that make your app faster, smaller, & easier to build
β¦ Hermes bytecode diffing cuts update sizes by ~75%
β¦ Brownfield support gets a serious upgrade
β¦ MCP now queries EAS + TestFlight crashes
Full changelog: expo.dev/changelog/sd...
The docs on this are hidden in the Nearby Interaction section, rather than the Multipeer Connectivity section. Leaving this here for anyone else encountering issues:
developer.apple.com/documentatio...
I've been playing around with MultipeerConnectivity recently and I got caught out by not declaring the NSBonjourServices in my plist. Adding _myAppName._tcp and _myAppName._udp finally showed the local network permissions alert. π°
Ah nice thanks for the headβs up!
The issue might just be with the RN Version weβre using in that project. Itβs still on 0.79 but weβll probably be updating soon so maybe that will fix a few things along the way. Will double check once weβve updated and let you know :)
One thing to watch out for though was using react-native Pressables in portals. Switching these out to react-native-gesture-handler Pressables meant the press event handlers were fired correctly.
Nice! Adding it to our project this evening was really simple and since the naming is consistent with gorhom portal I only had to update the imports and add StyleSheet.absoluteFillObject to the PortalHosts and we were good to go. π
Huge thanks to @expo.dev for featuring our journey with DEPOT on their blog! Big thank you as well to @baumstumpf.bsky.social for the editorial support π
The path to success was built one step at a time - and those incremental improvements compounded to really pay off. π
π€β€οΈ RNR 352 β€οΈπ€
This week: @expo.dev Launch! π
Our hosts @mazenchami.dev and @robinheinze.dev welcome back @cedric.dev to break down how Expo's new tool is making it easier than ever to launch to the App Store!
Listen now π
infinite.red/react-native...
Vercel added Bun runtime support (Beta): Next.js apps can now access native Bun APIs like Bun.file π To enable, declare the bunVersion in your vercel.json e.g.
`"bunVersion": "1.x"`
bun.com/blog/vercel-...
pnpm 10.21 now auto-installs the correct Node.js runtime for deps that declareΒ engines.runtime, improving compatibility for CLI tools.
pnpm.io/blog/release...
Error.cause (ES2022) helps to add clearer error context and preserve the original stack trace. I wasn't aware of this property, so many thanks to Matt Smith - looking forward to trying it out!
allthingssmitty.com/2025/11/10/e...
TanStack DB droppedΒ Query-Driven SyncΒ inΒ v0.5 and introduced `syncMode: "on-demand"`, which removes the need to load full datasets upfront. π₯
tanstack.com/blog/tanstac...
Here are a few dev highlights, I came across this weekend πβοΈ Give them a skim on your next coffee break β and let me know what you think π
I'm preparing my Star Wars themed talk on TanStack DB for next week's React(Native) Kiel meetup. If you're around in Kiel on Monday evening, feel free to join us for some nerdy fun! βοΈ
www.meetup.com/kiel-react-n...
The Expo examples repo is a super helpful resource for testing out app ideas. Thereβs a bunch of examples of modern setups that you can use as a starting point. Helps me move fast on ideas rather than getting stuck in setup decisions. github.com/expo/examples
π After a week of research and hours of passionate debate we have trimmed 1,200 apps down to 6 nominees for each of the App Award categories.
If you are looking for inspiration to elevate your app, you can find it here: expo.dev/awards
Congrats to all the nominees!
Always fun seeing how the ecosystem evolves and if you've come across anything else worth reading, post it below - I'd love to check it out. ππ€
5. solito.dev/v5
Solito v5 has landed - now with zero web config and dropping react-native-web as a dependency. A notable shift for universal app setups and something I'll be keeping an eye on to see how this evolves.
4. paperclover.net/blog/webdev/...
Interesting reflections on working with the app router. Not sure I agree with every take but it's great to see TanStack Start gaining traction in the community - something I've used in hobby projects but not yet in production.
3. allthingssmitty.com/2025/10/20/r...
Clear, practical examples for managing async work in loops. Presents a solid framework for handling concurrency without getting tangled in nested promises.
2. web.dev/blog/baselin...
The URLPattern API is now baseline, newly available meaning less manual regex maintenance - a quiet but meaningful win for readability too.
const pattern = new URLPattern({ pathname: "/users/:id" });
const isMatch = pattern.test(location.href);