Upgrade to Pro — share decks privately, control downloads, hide ads and more …

React Native: an overview from a mobile and frontend developer

Bruno Konrad
September 24, 2016

React Native: an overview from a mobile and frontend developer

React proved itself as a mark on UI development. It caused a kind of revolution on web and it's trying to do the same on mobile. I'll explain you about my first impressions about React Native, a library to create native mobile apps - for iOS and Android -.

Bruno Konrad

September 24, 2016
Tweet

More Decks by Bruno Konrad

Other Decks in Technology

Transcript

  1. ReactDOM Browser DOM React Component render: function() { return <span>hey</span>

    } React Component render: function() { return <Text>hey</Text> } From: https://www.youtube.com/watch?v=KWEhFWm0SL8 React Native iOS Android ? BRIDGE BRIDGE
  2. $ react-native init [YouAppName] [YourAppName] / ├── android / ├──

    ios / ├── node_modules / ├── index.android.js ├── index.ios.js ├── package.json
  3. USE IT WITH SOME KIND OF "CAUTION". • MVP •

    PROTOTYPES • TRY IT YOURSELF