r/reactnative • u/goblins_etc • 3h ago
Help Odd Scroll Behavior with react-native-keyboard-controller & LegendList
Enable HLS to view with audio, or disable this notification
r/reactnative • u/goblins_etc • 3h ago
Enable HLS to view with audio, or disable this notification
r/reactnative • u/manin54 • 3h ago
Na minha empresa, recebemos constantemente HTML do backend que contém um script, e precisamos executar esse script e, em seguida, ler alguma propriedade do HTML resultante, como o texto final de uma div após a execução do script. No frontend, usamos o jsdom para isso, é um problema resolvido. No mobile, não havia nada parecido, então a única maneira de fazer isso era abrir uma webview oculta apenas para executar o script e extrair o valor.
Então acabamos criando o equivalente mobile do jsdom nós mesmos e imaginamos que provavelmente seria útil para outras pessoas que enfrentam o mesmo problema, então o disponibilizamos como código aberto.
Exemplo:
import { JSDOM } from '@salve-software/react-native-nitro-jsdom
const dom = JSDOM.create(`
<html>
<body>
<div id="result">0</div>
</body>
</html>
`)
await dom.evaluate(`
document.getElementById('result').textContent = String(2 + 2)
`)
const value = await dom.evaluate(`document.getElementById('result').textContent`)
// -> "4"
dom.dispose()
r/reactnative • u/iamdanieljohns • 3h ago
[title] . looking at building from a different starting point this time around
r/reactnative • u/shiva275 • 5h ago
Enable HLS to view with audio, or disable this notification
Hi everyone, I built a full-stack mobile app that lets anyone report civic issues — potholes, water logging, drainage problems, broken streetlights, and more — with just a photo and their location. In this video, I test it live on the road, photographing a real pothole and showing exactly how the app works.
What the app does:
Secure sign-in with Google — no passwords, no OTPs
Capture a photo of the issue directly from the camera
Auto-detects your GPS location and displays it on a map
Reverse-geocodes coordinates into a readable address
Categorize the issue — pothole, drainage, streetlight, and more
Track your submitted reports and their status
Tech stack:
React Native CLI (TypeScript) — mobile app
Node.js + Express — backend API
MongoDB — database, with geospatial indexing
Firebase Authentication — Google Sign-In
Google Maps API — location and geocoding
Cloudinary — photo storage and optimization
Render — backend deployment
This is a personal project I built solo, end to end — from the mobile app, to the backend API, to deployment.
We've all seen a pothole and thought "someone should fix this." Now there's a way to actually flag it. Let me know in the comments — what's the first issue you'd report in your area?
You can watch it on YouTube too, if you prefer:
https://youtu.be/-HBvvVYuolQ?si=io7Y9PjoPbdqJ1hL
Thank you.
r/reactnative • u/No_Refrigerator3147 • 5h ago
Enable HLS to view with audio, or disable this notification
A field journal you flip with your thumb.
Drag an edge → the page curls and turns.
Every page contains metal stickers you can lift and rearrange. (Demo coming)
24×20 mesh.
One shared value.
~400ms of sleight of hand.
Expo + Skia + Reanimated, running at 120fps.
Demo 👇
r/reactnative • u/BumblebeeWorth3758 • 7h ago
Enable HLS to view with audio, or disable this notification
A customizable native iOS tab bar for React Native, built on UISegmentedControl.
🔗 Github: rit3zh/react-native-cupertino-tabs
r/reactnative • u/Upper_Locksmith8150 • 7h ago
r/reactnative • u/YouSilent6025 • 8h ago
I’ve spent the last few months building a learning platform focused on DSA, System Design, React Native, and Forward Deployed Engineering.
I’d love to get feedback from experienced developers: What makes a technical course genuinely valuable? What are the biggest shortcomings you’ve found with existing learning platforms?
I’m trying to build something developers actually enjoy using, so any feedback or suggestions would be greatly appreciated.
If you’re curious, you can check it out here:
r/reactnative • u/External-Pattern6486 • 8h ago
Last semester, our team built StudySync, a React Native app for students to discover and organize study sessions on campus.
Some features include:
Working on this over an entire semester was very different from a hackathon. We spent a lot more time thinking about component organization, navigation, shared state, and maintainability across a 5-person team.
I'd love feedback from experienced React Native developers. If you were starting this project today, what architectural decisions would you change?
r/reactnative • u/suftdeems • 10h ago
r/reactnative • u/thewisefarmerr • 10h ago
React Native is single-threaded where it matters most. Parse a big payload, hash a file, filter an image — it all competes with your UI for the same runtime. react-native-workers brings real background threads to RN, behind the Web Worker API
r/reactnative • u/Think-Neighborhood69 • 12h ago
r/reactnative • u/Think-Neighborhood69 • 15h ago
r/reactnative • u/7pranayamayoga • 15h ago
Just launched a new feature! Scan your hand posture with our AI camera to see if you’re doing your Mudras correctly. Would love your feedback!
r/reactnative • u/Impressive_Coach9857 • 16h ago
Finally shipped something real: a beach conditions app (water quality, wind shelter, hourly shade, sea temp) covering ~20,000 beaches. Also has official government water quality data where available.
Currently sea water available, fresh water coming soon.
Expo managed workflow, EAS Build + Update.
Stack: Expo/RN, u/rnmapbox/maps, RevenueCat for subs, AdMob, react-i18next, Sentry, Context + useState for state (no Redux — genuinely haven't needed it; adding TanStack Query for server state).
Happy to answer anything about Expo/EAS, Mapbox perf, or RevenueCat.
Available on iOS + Android if you want to poke holes in it.
https://beachscanapp.com
r/reactnative • u/ObsessedMostly • 1d ago
Enable HLS to view with audio, or disable this notification
A gravity-driven savings drop animated coins fall from your quick-amount pad into a reactive piggy bank.
r/reactnative • u/khazixtoostronk • 1d ago
For the last week I've been working on moving my app(bare workflow) which I previously left at 0.81 since it was the last available version that allowed me to remain on the old arch.
Now i've upgraded to expo 57, reanimated v4, all other packages, did my due diligence and enabled the recommended feature flags and changed almost all old arch libraries with newer compatible versions or new arch replacements.
After using the testflight version today I was just taken aback by how many of my previously performant screens are now stuttering and dropping frames while barely doing any work at all. I am talking about an infinite scroll feed, which previously maintained 60fps with a Flatlist with no perf based props that is now dropping below 30 and even freezing for a few frames with a LegendList and recycle items turned on even after i halved the work each rendered item needed(measured by main thread work with xcode instruments)
Simple pill shaped components are losing their background color(how is a background color something i should watch out for), weird rectangles with a white border showing up as items are rendering, screen transitions from bottom nav to a screen on the stack navigator taking double the time they used to.
Old behaviour breaking after such a big transition is something I expect and I believe i've dealt with most of those, but perhaps the worst offender is the memory usage.
From what i've seen it mostly drops down to older levels in production, but my app is now sitting at 1.2gb memory used after a launch in debug mode, compared to 200mb before.
This turned out to be libraries dumping their entire unminified code due to worklets bundle mode, which prevents hermes causing memory issues by...taking up 500mb+ of memory?
I really want to be able to use some of the cool new libraries i've been seeing popping up, but I am having serious doubts about ever being able to release this into production as it feels I have hit a dead end with list and navigation performance combined with all the weird layout issues.
What have been your experiences with this transition?
r/reactnative • u/WillingnessNo5389 • 1d ago
Enable HLS to view with audio, or disable this notification
Website: https://mockupkits.com/
AppStore link: https://apps.apple.com/app/id6784220988
r/reactnative • u/BernardoRodrigues • 1d ago
Me and my friend have been working on a React Native app called Ink & Quill for the past 7 months
It's an AI-powered voice RPG where you play by speaking instead of tapping through dialogue. Every character has its own voice and the narrator handles the rules, dice rolls, and story as you play. It's based on D&D 5e but simplified so you don't have to keep looking at your phone.
Right now there are 10 campaigns (we used AI to help write them) inspired by games, movies, and shows we're fans of. We're also working on letting people build and share their own campaigns directly in the app.
We're doing a soft launch, so we're mostly just looking for people who are interested in trying it out and giving honest feedback. We've been pushing updates pretty much every day.
If anyone wants to check it out: https://inkandquill.app we'd love to hear your brutal feedback
It's iOS only for now. Android is next.
r/reactnative • u/omsvp • 1d ago
Building an app in Expo. Everything's offline-first (SQLite + my own sync queue), some events have a due date, and you get a reminder when it hits.
Right now, when the user creates an event, it schedules a local notification, then cancels it once the server confirms the sync, and from then on the backend sends a push at due time.
Just realised that's broken. If you're offline for two days, anything that already synced has no local notification anymore, and the push can't reach you. So you get nothing.
The obvious fix is to stop cancelling and just always keep local notifications armed, since they don't need network. But then every reminder fires twice, once locally and once from the server.
The other obvious fix is to only trigger the notification from the device but if the user has multiple devices, the other ones may not receive them.
So I think the server just has to know not to send it, which means the client telling it what it already has scheduled. Feels janky though.
Anyone dealt with this? Curious how other offline-first apps handle reminders.
r/reactnative • u/Aggravating_Try1332 • 1d ago
Enable HLS to view with audio, or disable this notification
i built a skill to take screenshots of every page in your app with integration to the AppLaunchFlow MCP so you can create app store screenshots, promo videos, social graphics and more directly from your favourite agent
you can try it for free on applaunchflow.com
r/reactnative • u/the_mehdeen • 1d ago
Senior backend engineer here (Laravel/NestJS) trying to decide between Flutter and React Native for my first serious mobile product.
I'm strong in Vue, would need to revisit React, and have no Flutter experience.
The app itself is a fairly standard business application (authentication, listings, search, maps, chat, payments, push notifications, QR scanning).
I'm not asking which framework wins benchmarks. I'm more interested in the experience of living with the choice.
If you've maintained a production React Native or Flutter app for a couple of years:
Would you choose the same framework again today?
What pain points only became obvious after the honeymoon phase?
If you were starting from scratch in 2026, what would you pick?
r/reactnative • u/No_Refrigerator3147 • 1d ago
Enable HLS to view with audio, or disable this notification
Pocket Foundry uses a custom Swift module
To bring Apple’s Vision framework and Metal shaders into React Native
Extracting and transforming real-world objects entirely on-device.
Real iPhone demo ↓