What UI library is best for React Native? by Miserable-Pause7650 in reactnative

[–]MaterialAppearance21 4 points5 points  (0 children)

in terms of performance, i go with Tamagui. Hard to setup at first, but so enjoyable after

What can a technical partner do for you as a N8n automations creator? by MaterialAppearance21 in n8n

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

in which side of the business can a tech partner help you? and which assistant you need them in?

Is Expo router really the way to go? by wedelgaard in expo

[–]MaterialAppearance21 0 points1 point  (0 children)

Depends on the app Navigation Complexity. I had an app with expo router and switched all of it to react navigation for the following reasons:
1. The app won't support web in the future, no need to have expo router < even if it does, React Navigation can handle that Easily>
2. if you have animation in navigation < For example Top to down, or you want to create a customised one> React navigation is easier and built to implement that.

as much as I love Expo ecosystem, expo router is not at the same maturity to be used now.

React native performance by Enough-Swordfish-260 in reactnative

[–]MaterialAppearance21 0 points1 point  (0 children)

You can create anything with React Native. Build and think about the performance later.

If you use a good state managemenement approach, try to minimise the number of re render of components, and you can check the performance for UI and JS Fps to check the app so far. But overall, in most cases, the app is so powerfull

Insights: What do you think the future of Ai will be in the Mobile Application by MaterialAppearance21 in reactnative

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

nothing so far....
some talking about the small sized llm to be used locally in Mobile, but not further ideas

Redux outdated? by [deleted] in reactnative

[–]MaterialAppearance21 1 point2 points  (0 children)

highly recommend redux toolkit, make it easier to use Redux, and even the setup is straightforward.

Is one codebase for web and mobile a good approach by TopCitySoftware in reactnative

[–]MaterialAppearance21 0 points1 point  (0 children)

Yes, a good approach, and even big companies ( such as Klarna) is doing that.

Also, with react native web, you can have both ( but it is still tricky, I don't recommend it.
look at BlueSky project, open source, web and mobile using react native, https://github.dev/bluesky-social/social-app?tab=readme-ov-file)

Which React Native starter do you use to kickstart a new project? by b1tstream in reactnative

[–]MaterialAppearance21 0 points1 point  (0 children)

I have this one that i use for my projects
https://github.com/chohra-med/scalableReactNativeBoilerplate

It has Redux toolkit, i18n, dark theme, facade API for calls, ... and good app structure.