Ideally a cross pollination of ideas about animations would make both ecosystems better.
A Deep Dive on React Native [video]
21–30 of 72 posts
Re: A Deep Dive on React Native [video]
#22I get that people are excited, but it seems like time and time again these abstractions fail to solve the underlying problems. It's like how we never got a fix for making cross platform applications. And regardless how much people wants the new way of doing things to work, the results speak for themselves. Atom, the editor, can't even handle window re-sizing smoothly.
It's actual native components, with the intent that you "learn once, write everywhere" rather than try to jam iOS and Android into the same codebase.
Re: A Deep Dive on React Native [video]
#23React Native is a cool project, but the deafening hype is slightly puzzling. Creating and calling native UI components from JavaScript is nothing special in itself. It's obviously possible to do it from JS just as well as from any other language -- you just need to provide the API. There you have two choices: either a bridge that translates the native API directly, or a wrapper class hierarchy. Examples of bridges in…
> With time, React Native could become for mobile what Qt is on the desktop -- and that's high praise in my books.
Sounds like maybe you're not so puzzled after all?
I'm not sure what you're hearing is hype. I think it's just excitement. Nobody is declaring this as The One True Way just yet, but a lot of people (you and I included, it seems) are cautiously optimistic that it could make mobile development a lot better.
Re: A Deep Dive on React Native [video]
#24React Native is a cool project, but the deafening hype is slightly puzzling. Creating and calling native UI components from JavaScript is nothing special in itself. It's obviously possible to do it from JS just as well as from any other language -- you just need to provide the API. There you have two choices: either a bridge that translates the native API directly, or a wrapper class hierarchy. Examples of bridges in…
Re: A Deep Dive on React Native [video]
#25Re: A Deep Dive on React Native [video]
#26I get that people are excited, but it seems like time and time again these abstractions fail to solve the underlying problems. It's like how we never got a fix for making cross platform applications. And regardless how much people wants the new way of doing things to work, the results speak for themselves. Atom, the editor, can't even handle window re-sizing smoothly.
Did you watch the video? They're taking a genuinely new approach here. It's not "lowest common denominator" like Xamarin, Qt, etc, and it's also not a WebView like Atom or Ionic (Cordova). It's actual native components, with the intent that you "learn once, write everywhere" rather than try to jam iOS and Android into the same codebase.
Re: A Deep Dive on React Native [video]
#27That just seems SO much easier, quicker, and more efficient than storyboarding and coding UIViews. I am very much looking forward to being able to play around with this and discover downsides, because there have to be some...right?
Re: A Deep Dive on React Native [video]
#28I'm not sure I got how the Javascript code executing? For the case of Android, is the library spinning up a WebView to get access to the V8 engine?
Re: A Deep Dive on React Native [video]
#29All of this looks great and I'll give it a try as soon as I get some spare time, but there are a couple of things I didn't understand. 1) Is this cross platform or are you still going to have separate code bases for the UIs of iOS and Android? Looking at the code in the demo there are components like View, Text and Image. As basic as they are, are they the same on iOS and Android (same behaviour, same arguments)? It…
Re: A Deep Dive on React Native [video]
#30All of this looks great and I'll give it a try as soon as I get some spare time, but there are a couple of things I didn't understand. 1) Is this cross platform or are you still going to have separate code bases for the UIs of iOS and Android? Looking at the code in the demo there are components like View, Text and Image. As basic as they are, are they the same on iOS and Android (same behaviour, same arguments)? It…