React Native: The Big Picture Flashcards

1
Q

Are there divs and spans for react native?

A

No, there are Views and Text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Does react native run on a web view like Cordova?

A

No. It builds native code for android and iOS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How does styling look like in react native? Is it CSS? Is it styled components? Are there special styling for android and ios platforms?

A

Pretty much the same as web: via CSS and styled components. Yes, special styles are available for these platforms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Does React Native support hot reloading?

A

Yes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Cite the groups of components available for react.

A

Core (come with the framework), community and your own native components.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Does react native use the same principles as reactjs?

A

Yes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is react native debugger?

A

a tool to debug react native apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is code push?

A

Microsoft code repository that allows pushing new code to customer without a new version download.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the best website to get started with React Native?

A

reactnative.dev/docs/getting-started

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Where to find a curated list of third party libs?

A

github.com/react-native-community

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

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?

A

expo… yes. No…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Does Expo supports other feature such as filesytem access, camera, native graphics and OTA updates (over the air)

A

Yes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is ignite? Does it also provides api testing and themes? Where to find more info about it?

A

A boilerplate to create react native apps (folder structure and stuff). Yes. Infinitered/ignite.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How to test in react native?

A

Same way as react: jest

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which tool to use for end-to-end tests? What does it do?

A

Detox. Emulates user and automated tests

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which tools to push notifications in react native?

A

Expo, one signal, firebase and aws amplify

17
Q

how to deploy code in react native?

A

Over the air updates (OTA) using code push and FASTLANE

18
Q

how to release beta with react native?

A

TestFlight and google play/crashlytics.