Earlier quoted context omitted.
React Native isn't really web based. It draws real, native UI elements, not HTML.
Still a web framework though, even if the end result isn't HTML.
Discord Switching to React Native for Android App
31–40 of 82 posts
Re: Discord Switching to React Native for Android App
#32Earlier quoted context omitted.
React Native isn't really web based. It draws real, native UI elements, not HTML.
Still a web framework though, even if the end result isn't HTML.
Re: Discord Switching to React Native for Android App
#33I hope desktop apps can soon start switching from Electron to React Native.
Re: Discord Switching to React Native for Android App
#34I hate a lot of Electron and React Native based software, but Discord manages to avoid performance, stability, and quality issues that most seem to encounter. I don't know what they do or how they do it, but I think it's very impressive.
Re: Discord Switching to React Native for Android App
#35Re: Discord Switching to React Native for Android App
#36React Native really is a game changer for mobile development. I picked it up last year to build a new iOS app for the first time since the old Objective-C/UI-Kit days. I was literally building things in minutes that would have taken hours or days of writing custom OpenGL and networking code back then. Any performance tradeoffs left at this point are worth it IMO.
The first question that popped into my head when I saw this headline was: Is React Native still a hot mess?
Re: Discord Switching to React Native for Android App
#37I hate a lot of Electron and React Native based software, but Discord manages to avoid performance, stability, and quality issues that most seem to encounter. I don't know what they do or how they do it, but I think it's very impressive.
Re: Discord Switching to React Native for Android App
#38Lot of people here don't know what React Native actually is
Re: Discord Switching to React Native for Android App
#39React Native really is a game changer for mobile development. I picked it up last year to build a new iOS app for the first time since the old Objective-C/UI-Kit days. I was literally building things in minutes that would have taken hours or days of writing custom OpenGL and networking code back then. Any performance tradeoffs left at this point are worth it IMO.
I picked up React Native a few years ago for a project and spent a week doing nothing but fighting the build system. And then I spent another week doing the same on Android. The first question that popped into my head when I saw this headline was: Is React Native still a hot mess?
Expo [0] is what really makes things painless now. There's no more struggling with native binary dependency hell. And the entire App store submission process is completely managed; building, signing, uploading, and pushing a new version from your machine to Apple is just a single CLI command.
https://dev.to/mauro_codes/expo-101-building-mobile-apps-in-...
Re: Discord Switching to React Native for Android App
#40Do they share code between desktop and RN?
My company has a RN app and a React web app. We've found there isn't much opportunity for sharing UI code; you can share hooks, data layer type stuff, etc, but the actual components aren't really compatible because the leaves of the UI tree are totally different (native elements vs HTML elements) The bigger wins come from shared tooling/skillset/headspace. Our UI devs can fairly easily jump back and forth between the…