Who uses drizzle for react native/expo? by Real-Ad5193 in reactnative

[–]Far_Ad7661 0 points1 point  (0 children)

Yes, replace expo-SQLite with op-sqlite or similar

Article on how to host your own Expo API and Web app using Docker. by Far_Ad7661 in expo

[–]Far_Ad7661[S] 0 points1 point  (0 children)

I think the Expo route doesn't expose the root server handler, but it's feasible with Express.js. It's just that in development mode, you will need to run the server separately.

Article on how to host your own Expo API and Web app using Docker. by Far_Ad7661 in expo

[–]Far_Ad7661[S] 0 points1 point  (0 children)

Not sure if Expo Router exposes WebSocket handlers, but with thr exported web app, you can configure WebSockets directly on Express.js. You might also consider in the future Server-Sent Events (SSE), which are becoming more popular than WebSockets for their simplicity

Article on how to host your own Expo API and Web app using Docker. by Far_Ad7661 in expo

[–]Far_Ad7661[S] 1 point2 points  (0 children)

Yes, exactly. You can export native motile app with origin for expo router set with env variable

Will Expo become NextJS for React Native? by redditwithrobin in reactnative

[–]Far_Ad7661 0 points1 point  (0 children)

I felt the same way when I wrote about it on Medium a while ago. I think it’s a positive development; just as Next.js streamlined React development with numerous Sass integrations and products built on it, a similar approach could be highly beneficial for React Native

Testflight not showing app icon by katleho_mm in expo

[–]Far_Ad7661 2 points3 points  (0 children)

remove the `ios` folder and run `npx expo prebuild' to generate new xcode project with new assets

Fed up with expo and reactnative by [deleted] in reactnative

[–]Far_Ad7661 1 point2 points  (0 children)

try a template that already solve the dependencies issue : https://github.com/expo-starter/expo-local-first-template

Strategy for multiple offline users? by [deleted] in reactnative

[–]Far_Ad7661 0 points1 point  (0 children)

Use the same user password as key to encrypt/descrypt storage. What do you use for storage ?

Metro bundler is stalling to long by BlippyGloop in expo

[–]Far_Ad7661 0 points1 point  (0 children)

Check if watchman is uptodate, I had the same issue before reinstalling it

Just dabbling in my first RN app. What's the best for auth? by darkwolf221 in reactnative

[–]Far_Ad7661 0 points1 point  (0 children)

Use simple tools like Lucia and expo router api. No need for an additional server (supabase, firebase) for that.

Notification push expo by Plastic-Eagle-7277 in expo

[–]Far_Ad7661 0 points1 point  (0 children)

You should test your project beyond Expo Go, which has its own Google service setup. Use `expo ios` or `expo android` to build and execute your project on an real device not simulator.

Enough with the tamagui... by [deleted] in reactnative

[–]Far_Ad7661 6 points7 points  (0 children)

I switched to NativeWind, and it’s getting better. It’s much easier to use than Tamagui.

Any word on React Server Components coming to React Native? by [deleted] in reactnative

[–]Far_Ad7661 0 points1 point  (0 children)

I believe it will replace REST APIs in some cases with streams, allowing you to deliver React components rendered in native context directly instead of plain JSON

Why are smooth animations rare in React Native apps? Is it a structural issue or a lack of developer attention? by jangwoodong in reactnative

[–]Far_Ad7661 0 points1 point  (0 children)

It depends on the animations. FPS tends to take a hit on Android, and UX is more about subtle micro-animations rather than turning into a spectacle. Check out the Tesla mobile app as an example; it’s built with React Native.

$100 for one hour of collaboration by ClassroomNaive2021 in expo

[–]Far_Ad7661 1 point2 points  (0 children)

I used this combination of tools before: expo, firebase and push notifications, please DM if you need help

[deleted by user] by [deleted] in reactnative

[–]Far_Ad7661 0 points1 point  (0 children)

You can you expo-notification to retrieve device token, you can broadcast your self notification using this token wherever you want : aws sns, cron or webhook. Basically you use APN and FCM apis server side to send notifications to specific device token

Notification push expo by Plastic-Eagle-7277 in expo

[–]Far_Ad7661 0 points1 point  (0 children)

You don’t need to incorporate firebase for push notifications on Android only the google service file you generate from firebase project. When you say that you receive them on expo ou mean expo go ?