SlideShare a Scribd company logo
@matteomanchi
Matteo Manchi
ROME 24-25 MARCH 2017
React Native for multi-platform
mobile applications
@matteomanchi
Mobile Development
@matteomanchi
… but necessary.
Mobile Development
Native is hard…
@matteomanchi
Different platforms
@matteomanchi
Different languages
@matteomanchi
Different look
@matteomanchi
But what if we can use
technologies we know?
Mobile Development
@matteomanchi
■ Web developer friendly
■ Native UI (vs WebView)
■ Live Reload (vs Compile&Wait)
■ Declarative UI (vs Imperative UI)
■ Multi-platform support (vs specific support)
■ Open Source
Why React Native?
@matteomanchi
Matteo Manchi
Full stack developer
React enthusiast
Co-founder of RomaJS
CEO at ImprontaAdvance
@matteomanchi
https://github.com/takeno
About Me
@matteomanchi
Web Developer
My journey to app development
⬇
Mobile site version
⬇
Mobile application ➡➡ WTF?
@matteomanchi
Phone Gap with box-shadow
@matteomanchi
Web Developer
My journey to app development
⬇
Mobile site version
⬇
Mobile application ➡
⬇
⬅⬅
@matteomanchi
Titanium - Red Screen of Death
@matteomanchi
Front-end experience
@matteomanchi
Codemotion 2015
https://facebook.github.io/react/blog/2015/03/26/introducing-react-native.html
@matteomanchi
Let's start from the beginning...
@matteomanchi
React is a JavaScript library for building user
interfaces.
■ Just the UI
■ One-way data flow
■ Virtual DOM
■ From Facebook
What is React?
@matteomanchi
■ Component: Everything is a component
■ Props: some data passed to child component
■ State: some internal data of a component
■ JSX: XML-like syntax helps to define component's
structure
■ Virtual DOM: tree of custom objects representing a port
of the DOM
Some keywords
@matteomanchi
Component definition
@matteomanchi
A framework for building native apps using React.
React Native
Yeah, the same React of web developers
Learn once, write anywhere.
@matteomanchi
■ brew install node
■ brew install watchman
■ npm install -g react-native-cli
■ Install X-Code and/or Android SDK
■ react-native init SampleApp
■ cd SampleApp
■ react-native run-ios
■ react-native run-android
Getting started
@matteomanchi
Component definition
@matteomanchi
Style
■ CSS-like declarations with camel-case properties
■ style props defined for all native components
■ It can be an array of styles
■ StyleSheet module to create multiple classes in one place
and cache them
It supports Flexbox!
@matteomanchi
Demo time!
@matteomanchi
How it works
Native Bridge
Your code
JavaScript Core
bundle.js
Native View
render
@matteomanchi
How it works
http://moduscreate.com/leverage-existing-ios-views-react-native-app/
@matteomanchi
About multi-platform
Business logic in JavaScript
means same codebase
between platforms.
@matteomanchi
Platform-specific code
■ if/else method
■ Platform-specific extensions
@matteomanchi
React Native wraps native UI components
Out-of-the-box
■ TabBar
■ Text
■ TextInput
■ Touchable
■ TouchableOpacity
■ Touchable Highlight
■ Touchable WithoutFeedback
■ View WebView
■ Activity Indicator
■ Date Picker
■ Image
■ ListView
■ MapView
■ Navigator
■ Picker
■ ScrollView
■ Slider
@matteomanchi
Out-of-the-box
■ InteractionManager
■ Keyboard
■ LayoutAnimation
■ Linking
■ NetInfo
■ PanResponder
■ PixelRatio
■ Settings
■ Share
■ StatusBarIOS
■ TimePickerAndroid
■ ToastAndroid
■ Vibration
■ ActionSheetIOS
■ Alert
■ Animated
■ AppState
■ AsyncStorage
■ BackAndroid
■ CameraRoll
■ Clipboard
■ DatePickerAndroid
■ Dimensions
■ Easing
■ Geolocation
■ ImageEditor
React Native wraps native API
@matteomanchi
Out-of-the-box
■ GeoLocation
■ Timers
● setTimeout
● setInterval
■ Flexbox
■ Network
● XMLHttpRequest
● Fetch
React Native injects polyfills in JS Core
@matteomanchi
Try it now!
■ git clone
https://github.com/facebook/
react-native.git
■ cd react-native
■ npm install
■ cd Examples/UIExplorer/
■ open UIExplorer.xcodeproj
■ Run
UIExplorer
@matteomanchi
Demo time!
@matteomanchi
JSCore allows you to use your favorite
JavaScript modules and tools!
JS Ecosystem
@matteomanchi
JS Debugging
@matteomanchi
React Native’s community is very active
■ 46k+ stars on Github
■ 6500+ issue solved
■ React Native Community on Github
React Native Ecosystem
@matteomanchi
React Native Ecosystem
■ UI Components
● native-base
● react-native-elements
● react-native-material-kit
● react-native-material-design
■ Navigation
● react-native-router-flux
● react-navigation
● native-navigation by AirBnB
● wix/react-native-navigation
Hundreds of packages published:
■ Native API
● react-native-maps by AirBnB
● react-native-camera
● react-native-onesignal
● code-push by Microsoft
@matteomanchi
Specific tools to help your development
■ Deco IDE
https://www.decosoftware.com
■ Sketch by expo.io
codepen-like playground for React Native
https://sketch.expo.io
■ Fastlane
Continuous deployment for mobile apps
https://sketch.expo.io/
■ Create React Native App
Starter pack inspired by create-react-app
https://github.com/react-community/create-react-native-app
React Native Ecosystem
@matteomanchi
■ Hackatons
■ MVP
■ Web Developer teams
■ Simple apps
Where is React Native now?
@matteomanchi
Facebook Ads Manager
Where is React Native now?
85% shared code between platforms
https://code.facebook.com/.../react-native-how-we-built-the-first-cross-platform
@matteomanchi
Where is React Native now?
Facebook App
FB event section is in RN
http://goo.gl/ziBzOl
@matteomanchi
What’s next?
http://githubstats.com/facebook/react-native
Stars Forks
Pull Requests Issues
React Native’s community is very active
@matteomanchi
“We use the
exact same version
internally”
Tadeu Zagallo
Software Engineer at Facebook
What’s next?
http://goo.gl/ziBzOl
@matteomanchi
Woah! Woah!
Questions?
@matteomanchi
ROME 24-25 MARCH 2017
THANK YOU!
@matteomanchi
@matteomanchi
We’re looking for
JS enthusiast
who wants to
have fun
with this cool technologies.
Contact me @matteomanchi
We’re hiring!
goo.gl/us55X3
More open positions: PHP Dev, Front-End Designer

More Related Content

PDF
React-Native for multi-platform mobile applications @ Codemotion Rome 2017
PDF
React Native in a nutshell
PPTX
PDF
When to (use / not use) React Native.
PDF
Lo mejor y peor de React Native @ValenciaJS
PPTX
SONY BBS - React Native
PDF
Experiences building apps with React Native @DomCode 2016
PDF
Introduction to React Native
React-Native for multi-platform mobile applications @ Codemotion Rome 2017
React Native in a nutshell
When to (use / not use) React Native.
Lo mejor y peor de React Native @ValenciaJS
SONY BBS - React Native
Experiences building apps with React Native @DomCode 2016
Introduction to React Native

What's hot (20)

PPTX
Creating books app with react native
PDF
React native
PPTX
How native is React Native? | React Native vs Native App Development
PPTX
React Native
PDF
Going Native With React
PDF
Power of React Native
PDF
React Native "A Bad Idea Or A Game Changer" at Code Mania 101
PPTX
Ionic framework
PDF
Experiences building apps with React Native @UtrechtJS May 2016
PPTX
React Native - Unleash the power of React in your device - Eduard Tomàs - Cod...
PDF
Cross Platform Mobile Development
PDF
React native sharing
PPTX
React Native Intro
PDF
An iOS Developer's Perspective on React Native
PDF
PDF
Ionic framework one day training
PDF
Some experiences building an Android app with React Native & Redux
PDF
Creating mobile apps - an introduction to Ionic (Engage 2016)
PPTX
Developing Hybrid Applications with IONIC
PPTX
Universal Windows Platform
Creating books app with react native
React native
How native is React Native? | React Native vs Native App Development
React Native
Going Native With React
Power of React Native
React Native "A Bad Idea Or A Game Changer" at Code Mania 101
Ionic framework
Experiences building apps with React Native @UtrechtJS May 2016
React Native - Unleash the power of React in your device - Eduard Tomàs - Cod...
Cross Platform Mobile Development
React native sharing
React Native Intro
An iOS Developer's Perspective on React Native
Ionic framework one day training
Some experiences building an Android app with React Native & Redux
Creating mobile apps - an introduction to Ionic (Engage 2016)
Developing Hybrid Applications with IONIC
Universal Windows Platform
Ad

Similar to React Native for multi-platform mobile applications - Matteo Manchi - Codemotion Rome 2017 (20)

PDF
Matteo Manchi - React Native for multi-platform mobile applications - Codemot...
PDF
Introduzione a React Native - Facebook Developer Circle Rome
PDF
Webinar - Matteo Manchi: Dal web al nativo: Introduzione a React Native
PDF
React Native for multi-platform mobile applications
PDF
React Native Introduction: Making Real iOS and Android Mobile App By JavaScript
PDF
l1-reactnativeintroduction-160816150540.pdf
PPTX
React Native Building Mobile Apps with React.pptx
PDF
React js vs react native a comparative analysis
PPTX
Session 01_02-Introduction to React Native .pptx
PPTX
React native
PPTX
Why React Native is the Future?
PDF
What is React Native and When to Choose It For Your Project.pdf
PPTX
React Native
PPTX
Getting Started With React Native Presntation
PDF
Introduction to react native
PDF
React native first impression
PDF
React Native
PDF
An Introduction to ReactNative
PPTX
React native introduction (Mobile Warsaw)
PDF
React Native App Development: A Comprehensive Guide
Matteo Manchi - React Native for multi-platform mobile applications - Codemot...
Introduzione a React Native - Facebook Developer Circle Rome
Webinar - Matteo Manchi: Dal web al nativo: Introduzione a React Native
React Native for multi-platform mobile applications
React Native Introduction: Making Real iOS and Android Mobile App By JavaScript
l1-reactnativeintroduction-160816150540.pdf
React Native Building Mobile Apps with React.pptx
React js vs react native a comparative analysis
Session 01_02-Introduction to React Native .pptx
React native
Why React Native is the Future?
What is React Native and When to Choose It For Your Project.pdf
React Native
Getting Started With React Native Presntation
Introduction to react native
React native first impression
React Native
An Introduction to ReactNative
React native introduction (Mobile Warsaw)
React Native App Development: A Comprehensive Guide
Ad

More from Codemotion (20)

PDF
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
PDF
Pompili - From hero to_zero: The FatalNoise neverending story
PPTX
Pastore - Commodore 65 - La storia
PPTX
Pennisi - Essere Richard Altwasser
PPTX
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
PPTX
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
PPTX
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
PPTX
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
PDF
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
PDF
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
PDF
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
PDF
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
PDF
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
PDF
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
PPTX
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
PPTX
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
PDF
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
PDF
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
PDF
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
PDF
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
Pompili - From hero to_zero: The FatalNoise neverending story
Pastore - Commodore 65 - La storia
Pennisi - Essere Richard Altwasser
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019

Recently uploaded (20)

PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Cloud computing and distributed systems.
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPT
Teaching material agriculture food technology
PDF
Electronic commerce courselecture one. Pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Transforming Manufacturing operations through Intelligent Integrations
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
PDF
Sensors and Actuators in IoT Systems using pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Modernizing your data center with Dell and AMD
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
KodekX | Application Modernization Development
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Cloud computing and distributed systems.
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Teaching material agriculture food technology
Electronic commerce courselecture one. Pdf
Per capita expenditure prediction using model stacking based on satellite ima...
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
NewMind AI Weekly Chronicles - August'25 Week I
Transforming Manufacturing operations through Intelligent Integrations
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
Sensors and Actuators in IoT Systems using pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Modernizing your data center with Dell and AMD
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
KodekX | Application Modernization Development
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)

React Native for multi-platform mobile applications - Matteo Manchi - Codemotion Rome 2017