SlideShare a Scribd company logo
1 of 99
Download to read offline
Harry Tormey + 7.13.2018 + Chain React
Strategies for Using React
Native in a Brownfield App
Agenda
1.0 Background
2.0 Should I do this?
3.0 How do I do this?
Background
1.0
What is a Greenfield App?
1.1
A Greenfield app is an app created
from scratch using React Native.
1.2
What is a Brownfield App?
1.3
A Brownfield app uses React Native
to power one or more views or user
flows within an existing native
application.
1.4
Should I do this?
2.0
What is the point of React Native?
2.1
Do more with less.
2.2
React Native Pros:
+ One Engineer for Web & Mobile
+ Allows you to make cross platform apps
+ Faster development cycle, no waiting to
compile
2.3
In theory, React Native allows your frontend
engineers to be ~2-3x as productive.
2.4
Why is Brownfield harder than Greenfield?
2.5
Things to know Greenfield:
+ Javascript
+ How React works
+ How to use React Native
2.6
Things to know Brownfield:
+ Javascript
+ How React works
+ How to use React Native
2.7
Things to know Brownfield:
+ At least one native language
+ How that native platform’s APIs work
+ The platform’s ecosystem / toolchain
+ How the existing native codebase is architected
2.8
Why is Brownfield harder
than Greenfield?
+ Takes 1-3 months to learn a new platform
+ You potentially have 2 new platforms to learn
+ Any existing code base takes time to learn
+ You potentially have 2 new code bases to learn
2.9
Initially, a Brownfield integration is probably going
to be at least 2-3x as hard as a Greenfield app.
2.10
In other words, a Brownfield integration potentially
nullifies many of the advantages of React Native.
2.11
So why do a Brownfield integration?
2.12
One way to look at tools like React Native is via
Return on Investment (ROI).
2.13
To a software engineer, the investment is the time it
takes to learn the tool you plan on using.
2.14
The return: what the tool enables you to
do.
2.15
A positive ROI should—in the long run—either save time or
increase the pace of development.
2.16
For an individual, using React Native in an existing native
app is probably a bad investment.
2.17
So who would a Brownfield
integration be a good investment for?
2.18
Organizations
2.19
As the number of engineers working on any app grows, an investment
in infrastructure is usually required to maintain the pace of development.
2.20
Examples of infrastructure
investments:
+ Optimizing build times
+ Continuous integration
+ Linters
+ Using GraphQL or a different data store
2.21
React Native is just another piece of infrastructure.
2.22
Which Organizations should try a
Brownfield integration?
2.23
Using React Native in a Brownfield app is probably best
suited for larger organizations.
2.24
Ideally, organizations that have multiple teams
working on the same app for multiple platforms.
2.25
Ideally, an organization that already has a web team
that uses React.
2.26
React Native—in theory—can help the organizations I just
described be more efficient.
2.27
The cost of learning can be parallelized by having
multiple people work on the project at once.
2.28
Adopting any new piece of infrastructure can result in failure
if you chose the wrong project.
2.29
It’s important to choose the right project
2.30
So, how do you pick the right
project for a Brownfield integration?
2.31
Expo Blog: Should we use React Native?
2.33
https://blog.expo.io/should-we-use-react-native-1465d8b607ac
“If you’re thinking of using React
Native for a few things like a
settings screen, an FAQ, or
something like an About page — 
the kind of things where you would
often just stick in a WebView — 
you’re likely to have good luck”
2.34
Charlie Cheever,
Co-Founder, Expo
“There are people who identify themselves
strongly as iOS or Android programmers &
have a really hard time being happy with
React Native. iOS programmers in
particular are very unhappy with it and
generally regard JS as an infestation of
the company’s codebase”
2.35
Charlie Cheever,
Co-Founder, Expo
UIKonf 2017 An iOS Developer’s take on React Native:
2.36
https://www.youtube.com/watch?v=cZ4zQWgajBg&t=232s
“Even if you’re using React
Native for things that it’s good at
and having success, it can still be
hard for large-scale native and
React Native development to
coexist in the same organization
for non-technical reasons.”
2.37
Charlie Cheever,
Co-Founder, Expo
If you want infrastructure to be widely adopted
its important to build trust in both you and the
infrastructure.
2.38
Start small and build momentum on your
successes.
2.39
Ideally, your first Brownfield project should be something
simple and quantifiable.
2.39
How Do I Do This?
3.0
Case Study
+ Example based on integration done for one
of my clients, KeepSafe
+ Use React Native to power A/B tested
subscription up-sell screen
+ Use code push to ship new experiments
without submitting a new app to the app
store 3.1
3.2
Brownfield Example
https://github.com/hgale/BrownFieldExample
Source code:
+ Display a particular up-sell experiment when a
user does something in the native app
+ Get a list of available experiment screens at
runtime
3.3
What does the example need to do?
What parts of this demo are
React Native?
3.4
3.5
+ Need a way to Send and Receive events
between React Native and Native
+ Need a way to pass data in and out of React
Native
3.6
What does the integration need to do?
How do we do this?
3.7
Built with: react-native-event-bridge
3.8
https://github.com/maicki/react-native-event-bridge
react-native-event-bridge developed by:
3.9
Michael Scheider,
@maicki
Thorbin Primke,
@tprimke
Pinterest
@PinterestEng
What happens when I click
purchase?
3.10
+ React Native emits an event in Javascript with
an SKU
+ Events are strings defined in both Javascript and
Native
+ Native code has event handlers that hook into
the existing payment system (ApplePay, etc) 3.11
What happens when I click purchase?
3.12
Example
+ ListScreens, sends all screens from React
Native when app starts
+ DismissScreen, tells the native nav screen to
dismiss the React Native screen
+ PurchaseItem, tells native purchase system to
make a purchase with SKU 3.11
What events are being emitted?
3.13
What does a purchase event
look like in Javascript?
3.14
3.15
const.js
3.16
UpsellScreenOne.js
JavaScript code that emits the event:
3.17
What does a purchase event
look like in Native?
3.18
3.19
ReactNativeConstants.swift
3.20
ReactNativeViewController.swift
Native code that handles the event:
3.21
What does all of this look like in
Javascript?
3.22
3.23
React Native
3.24
index.js
3.25
const.js
3.26
Const.js
3.27
UpsellScreen.js
3.28
Every screen has a config.js
+ ReactNativeViewController.swift hosts React Native in
native code, starts with props based on config.js
+ index.js calls getScreen with passed in props, which
contain screen to display
+ Native code has event handlers that hook into the
existing native systems that handle ApplePay, nav, etc)3.29
What happens when React Native
displays a screen?
What does this all look like in
Native Code?
3.30
3.31
Native
3.32
AppDelegateSwift
3.33
ReactNativeViewController.swift
3.34
HTReactNative.h
3.35
HTReactNativeHostController
3.36
ReactNativeConstants.swift
3.37
ReactNativeScreenManager.swift
How do I apply this process?
3.38
Further Reading
3.44
Artsy have an excellent series of posts on Brownfield
integration:
3.45
http://artsy.github.io/series/react-native-at-artsy/
https://github.com/artsy/emission
Artsy open sourced a collection of React Native
Components which they use in their app:
3.46
@orta
Orta Therox,
Artsy
Supporting React Native at Pinterest by Vivian Qu:
3.47
https://medium.com/@Pinterest_Engineering/supporting-react-native-at-
pinterest-f8c2233f90e6
Leverage Your Android Knowledge To Boost Your Team’s Velocity With React
Native.
Presentation by Thorben Primke (Pinterest) at Droidcon
Berlin:
3.48
@tprimke
Michael Scheider,
Pinterest
Thorben Primke,
Pinterest
@maicki
@htormey
React Native & Native mobile
consultant
Harry Tormey
harry.n.gale@gmail.com
launchdrawer.com
Thorben Primke,
Pinterest
Rob Phillips,
Consultant
Michael Scheider,
Pinterest
Keepsafe Infinite Red
Thank you!

More Related Content

What's hot

Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄ Κεφ. 12 (η παρουσίαση μαθήματος μ...
Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄  Κεφ. 12 (η παρουσίαση μαθήματος μ...Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄  Κεφ. 12 (η παρουσίαση μαθήματος μ...
Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄ Κεφ. 12 (η παρουσίαση μαθήματος μ...Ηλιάδης Ηλίας
 
19. Ποτάμια της Ελλάδας
19. Ποτάμια της Ελλάδας19. Ποτάμια της Ελλάδας
19. Ποτάμια της ΕλλάδαςXrisula Rizou
 
Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄
Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄
Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄Χρήστος Χαρμπής
 
Ο ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣ
Ο ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣΟ ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣ
Ο ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣMaria Froudaraki
 
Δ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της Μυκάλης
Δ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της ΜυκάληςΔ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της Μυκάλης
Δ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της ΜυκάληςGeorge Giotis
 
Δαίδαλος και Ίκαρος
Δαίδαλος και ΊκαροςΔαίδαλος και Ίκαρος
Δαίδαλος και Ίκαροςtheophanis15
 
Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.
Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.
Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.Papadeli Language School
 
Η ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝ
Η ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝΗ ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝ
Η ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝMaria Froudaraki
 
Eικόνες στο τέμπλο του ναού
Eικόνες στο τέμπλο του ναούEικόνες στο τέμπλο του ναού
Eικόνες στο τέμπλο του ναούs konstant
 
O Πελοποννησιακός πόλεμος
O Πελοποννησιακός πόλεμοςO Πελοποννησιακός πόλεμος
O Πελοποννησιακός πόλεμοςPapadeli Language School
 
Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3 Μελέτη Π. Δ' τάξη
Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3  Μελέτη Π.  Δ' τάξη Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3  Μελέτη Π.  Δ' τάξη
Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3 Μελέτη Π. Δ' τάξη Ηλιάδης Ηλίας
 
ο κυκλαδικοσ πολιτισμοσ
ο κυκλαδικοσ πολιτισμοσο κυκλαδικοσ πολιτισμοσ
ο κυκλαδικοσ πολιτισμοσAlexandra Michalopoulou
 
3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)
3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)
3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)Maniatis Kostas
 
Όλου του κόσμου τα παιδιά
Όλου του κόσμου τα παιδιάΌλου του κόσμου τα παιδιά
Όλου του κόσμου τα παιδιάhrisgiou
 
Harmonically+excited+vibration
Harmonically+excited+vibrationHarmonically+excited+vibration
Harmonically+excited+vibrationRodrigo Tucunduva
 
Σπουδαία παιδιά
Σπουδαία παιδιάΣπουδαία παιδιά
Σπουδαία παιδιάDimitra Mylonaki
 
Η ελια στη ζωη μας (παρουσίαση του project)
Η ελια στη ζωη μας (παρουσίαση του project)Η ελια στη ζωη μας (παρουσίαση του project)
Η ελια στη ζωη μας (παρουσίαση του project)Maria Dimou
 
Βουνά της Θράκης
Βουνά της ΘράκηςΒουνά της Θράκης
Βουνά της ΘράκηςB3class
 

What's hot (20)

Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄ Κεφ. 12 (η παρουσίαση μαθήματος μ...
Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄  Κεφ. 12 (η παρουσίαση μαθήματος μ...Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄  Κεφ. 12 (η παρουσίαση μαθήματος μ...
Το παλιό πολίτευμα της Αθήνας - Ιστορία Δ΄ Κεφ. 12 (η παρουσίαση μαθήματος μ...
 
19. Ποτάμια της Ελλάδας
19. Ποτάμια της Ελλάδας19. Ποτάμια της Ελλάδας
19. Ποτάμια της Ελλάδας
 
Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄
Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄
Ιστορία Δ΄. 2. 8. ΄΄Η τέχνη της αρχαϊκής εποχής΄΄
 
Ο ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣ
Ο ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣΟ ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣ
Ο ΘΗΣΕΑΣ ΣΚΟΤΩΝΕΙ ΤΟΝ ΜΙΝΩΤΑΥΡΟ-ΙΣΤΟΡΙΑ Γ ΤΑΞΗΣ
 
Δ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της Μυκάλης
Δ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της ΜυκάληςΔ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της Μυκάλης
Δ δημοτικού Ιστορία: 19. η μάχη των Πλαταιών και η ναυμαχία της Μυκάλης
 
Δαίδαλος και Ίκαρος
Δαίδαλος και ΊκαροςΔαίδαλος και Ίκαρος
Δαίδαλος και Ίκαρος
 
Είμαι το νερό
Είμαι το νερόΕίμαι το νερό
Είμαι το νερό
 
Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.
Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.
Οι νόμοι του Σόλωνα. Ο Πεισίστρατος γίνεται τύραννος.
 
Η ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝ
Η ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝΗ ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝ
Η ΘΡΗΣΚΕΙΑ ΚΑΙ Η ΓΡΑΦΗ ΤΩΝ ΜΙΝΩΙΤΩΝ
 
Eικόνες στο τέμπλο του ναού
Eικόνες στο τέμπλο του ναούEικόνες στο τέμπλο του ναού
Eικόνες στο τέμπλο του ναού
 
O Πελοποννησιακός πόλεμος
O Πελοποννησιακός πόλεμοςO Πελοποννησιακός πόλεμος
O Πελοποννησιακός πόλεμος
 
Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3 Μελέτη Π. Δ' τάξη
Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3  Μελέτη Π.  Δ' τάξη Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3  Μελέτη Π.  Δ' τάξη
Σπονδυλωτά και ασπόνδυλα ζώα - 3η Ενότητα: Κεφ. 3 Μελέτη Π. Δ' τάξη
 
Παραλληλόγραμμα - Τραπέζια
Παραλληλόγραμμα - ΤραπέζιαΠαραλληλόγραμμα - Τραπέζια
Παραλληλόγραμμα - Τραπέζια
 
ο κυκλαδικοσ πολιτισμοσ
ο κυκλαδικοσ πολιτισμοσο κυκλαδικοσ πολιτισμοσ
ο κυκλαδικοσ πολιτισμοσ
 
3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)
3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)
3. Η ποίηση και η θρησκεία των Ελλήνων (Δ΄)
 
Όλου του κόσμου τα παιδιά
Όλου του κόσμου τα παιδιάΌλου του κόσμου τα παιδιά
Όλου του κόσμου τα παιδιά
 
Harmonically+excited+vibration
Harmonically+excited+vibrationHarmonically+excited+vibration
Harmonically+excited+vibration
 
Σπουδαία παιδιά
Σπουδαία παιδιάΣπουδαία παιδιά
Σπουδαία παιδιά
 
Η ελια στη ζωη μας (παρουσίαση του project)
Η ελια στη ζωη μας (παρουσίαση του project)Η ελια στη ζωη μας (παρουσίαση του project)
Η ελια στη ζωη μας (παρουσίαση του project)
 
Βουνά της Θράκης
Βουνά της ΘράκηςΒουνά της Θράκης
Βουνά της Θράκης
 

Similar to Strategies for Using React Native in a Brownfield App

10 Reasons Why You Should Consider React Native Over Native
10 Reasons Why You Should Consider React Native Over Native10 Reasons Why You Should Consider React Native Over Native
10 Reasons Why You Should Consider React Native Over NativeThinkTanker Technosoft PVT LTD
 
React Native App Development in 2023-Tips to Practice.pdf
React Native App Development in 2023-Tips to Practice.pdfReact Native App Development in 2023-Tips to Practice.pdf
React Native App Development in 2023-Tips to Practice.pdfTechugo
 
What is React Native and When to Choose It For Your Project.pdf
What is React Native and When to Choose It For Your Project.pdfWhat is React Native and When to Choose It For Your Project.pdf
What is React Native and When to Choose It For Your Project.pdfNarola Infotech
 
Why react native is the best choice for app development process
Why react native is the best choice for app development processWhy react native is the best choice for app development process
Why react native is the best choice for app development processOrange Mantra
 
React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...
React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...
React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...Katy Slemon
 
Cost of React Native App Development in 2023.pdf
Cost of React Native App Development in 2023.pdfCost of React Native App Development in 2023.pdf
Cost of React Native App Development in 2023.pdfTechugo
 
React Native Market Overview for Cross-Platform App Development.pdf
React Native Market Overview for Cross-Platform App Development.pdfReact Native Market Overview for Cross-Platform App Development.pdf
React Native Market Overview for Cross-Platform App Development.pdfTechugo
 
React Native for React Developers v.2.0.pdf
React Native for React Developers v.2.0.pdfReact Native for React Developers v.2.0.pdf
React Native for React Developers v.2.0.pdfNikolaGorgiev
 
React Native App Development.
React Native App Development.React Native App Development.
React Native App Development.Techugo
 
React Native_ Pros and Cons for Mobile app development.pdf
React Native_ Pros and Cons for Mobile app development.pdfReact Native_ Pros and Cons for Mobile app development.pdf
React Native_ Pros and Cons for Mobile app development.pdfMoon Technolabs Pvt. Ltd.
 
What are the advantages of using react native apps for your business?
What are the advantages of using react native apps for your business?What are the advantages of using react native apps for your business?
What are the advantages of using react native apps for your business?Fullestop
 
Which Framework is Ideal for Fintech Apps React Native or Hybrid?
Which Framework is Ideal for Fintech Apps React Native or Hybrid?Which Framework is Ideal for Fintech Apps React Native or Hybrid?
Which Framework is Ideal for Fintech Apps React Native or Hybrid?Amplework Software Pvt. Ltd.
 
Why Businesses Should Hire React Native Developers to Build the Best Mobile A...
Why Businesses Should Hire React Native Developers to Build the Best Mobile A...Why Businesses Should Hire React Native Developers to Build the Best Mobile A...
Why Businesses Should Hire React Native Developers to Build the Best Mobile A...Noman Shaikh
 
React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why Moon Technolabs Pvt. Ltd.
 
React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why Moon Technolabs Pvt. Ltd.
 
Why react native is recommended over other frameworks for mobile app development
Why react native is recommended over other frameworks for mobile app developmentWhy react native is recommended over other frameworks for mobile app development
Why react native is recommended over other frameworks for mobile app developmentFullestop
 
When to choose and avoid react native for mobile app development
When to choose and avoid react native for mobile app developmentWhen to choose and avoid react native for mobile app development
When to choose and avoid react native for mobile app developmentFullestop
 
Guide to Create React Native App for Android & iOS Platforms
Guide to Create React Native App for Android & iOS Platforms Guide to Create React Native App for Android & iOS Platforms
Guide to Create React Native App for Android & iOS Platforms RajasreePothula3
 

Similar to Strategies for Using React Native in a Brownfield App (20)

10 Reasons Why You Should Consider React Native Over Native
10 Reasons Why You Should Consider React Native Over Native10 Reasons Why You Should Consider React Native Over Native
10 Reasons Why You Should Consider React Native Over Native
 
React Native App Development in 2023-Tips to Practice.pdf
React Native App Development in 2023-Tips to Practice.pdfReact Native App Development in 2023-Tips to Practice.pdf
React Native App Development in 2023-Tips to Practice.pdf
 
What is React Native and When to Choose It For Your Project.pdf
What is React Native and When to Choose It For Your Project.pdfWhat is React Native and When to Choose It For Your Project.pdf
What is React Native and When to Choose It For Your Project.pdf
 
Why react native is the best choice for app development process
Why react native is the best choice for app development processWhy react native is the best choice for app development process
Why react native is the best choice for app development process
 
React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...
React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...
React Native Adoption at Bacancy Technology: The Journey from Beginners to Be...
 
Cost of React Native App Development in 2023.pdf
Cost of React Native App Development in 2023.pdfCost of React Native App Development in 2023.pdf
Cost of React Native App Development in 2023.pdf
 
React Native Market Overview for Cross-Platform App Development.pdf
React Native Market Overview for Cross-Platform App Development.pdfReact Native Market Overview for Cross-Platform App Development.pdf
React Native Market Overview for Cross-Platform App Development.pdf
 
React Native for React Developers v.2.0.pdf
React Native for React Developers v.2.0.pdfReact Native for React Developers v.2.0.pdf
React Native for React Developers v.2.0.pdf
 
React Native App Development.
React Native App Development.React Native App Development.
React Native App Development.
 
React Native_ Pros and Cons for Mobile app development.pdf
React Native_ Pros and Cons for Mobile app development.pdfReact Native_ Pros and Cons for Mobile app development.pdf
React Native_ Pros and Cons for Mobile app development.pdf
 
What are the advantages of using react native apps for your business?
What are the advantages of using react native apps for your business?What are the advantages of using react native apps for your business?
What are the advantages of using react native apps for your business?
 
Which Framework is Ideal for Fintech Apps React Native or Hybrid?
Which Framework is Ideal for Fintech Apps React Native or Hybrid?Which Framework is Ideal for Fintech Apps React Native or Hybrid?
Which Framework is Ideal for Fintech Apps React Native or Hybrid?
 
Why Businesses Should Hire React Native Developers to Build the Best Mobile A...
Why Businesses Should Hire React Native Developers to Build the Best Mobile A...Why Businesses Should Hire React Native Developers to Build the Best Mobile A...
Why Businesses Should Hire React Native Developers to Build the Best Mobile A...
 
Hire React JS Developers
Hire React JS DevelopersHire React JS Developers
Hire React JS Developers
 
React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why
 
React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why React native vs. ionic – which one is better and why
React native vs. ionic – which one is better and why
 
Hire React JS Developers
Hire React JS DevelopersHire React JS Developers
Hire React JS Developers
 
Why react native is recommended over other frameworks for mobile app development
Why react native is recommended over other frameworks for mobile app developmentWhy react native is recommended over other frameworks for mobile app development
Why react native is recommended over other frameworks for mobile app development
 
When to choose and avoid react native for mobile app development
When to choose and avoid react native for mobile app developmentWhen to choose and avoid react native for mobile app development
When to choose and avoid react native for mobile app development
 
Guide to Create React Native App for Android & iOS Platforms
Guide to Create React Native App for Android & iOS Platforms Guide to Create React Native App for Android & iOS Platforms
Guide to Create React Native App for Android & iOS Platforms
 

Recently uploaded

Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyFrank van der Linden
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWave PLM
 

Recently uploaded (20)

Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The Ugly
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need It
 

Strategies for Using React Native in a Brownfield App