React Native: The Big Picture Flashcards
Are there divs and spans for react native?
No, there are Views and Text.
Does react native run on a web view like Cordova?
No. It builds native code for android and iOS
How does styling look like in react native? Is it CSS? Is it styled components? Are there special styling for android and ios platforms?
Pretty much the same as web: via CSS and styled components. Yes, special styles are available for these platforms.
Does React Native support hot reloading?
Yes.
Cite the groups of components available for react.
Core (come with the framework), community and your own native components.
Does react native use the same principles as reactjs?
Yes.
What is react native debugger?
a tool to debug react native apps
What is code push?
Microsoft code repository that allows pushing new code to customer without a new version download.
What is the best website to get started with React Native?
reactnative.dev/docs/getting-started
Where to find a curated list of third party libs?
github.com/react-native-community
Which tool to run react native apps which supports hot reloads? Does it run on top of nodejs? Do I need android studio or xcode?
expo… yes. No…
Does Expo supports other feature such as filesytem access, camera, native graphics and OTA updates (over the air)
Yes.
What is ignite? Does it also provides api testing and themes? Where to find more info about it?
A boilerplate to create react native apps (folder structure and stuff). Yes. Infinitered/ignite.
How to test in react native?
Same way as react: jest
Which tool to use for end-to-end tests? What does it do?
Detox. Emulates user and automated tests