Web / React native Interview questions
Mention a few core components in React-native?
Core Component include,
- <View>, a container that supports layout with flexbox, style, some touch handling, and accessibility controls.
- <Text>, displays, styles, and nests strings of text and even handles touch events.
- <Image>, displays various types of images.
- <ScrollView>, a generic scrolling container that can contain multiple components and views.
- <TextInput>, allows the user to enter text.
More Related questions...