React Native मुख्य घटक — जसे की View, Text, Image, ScrollView, TextInput — ज्यांचा नेटिव्ह UI घटकांसह नकाशा तयार होतो. ही React Native UIs ची मूलभूत बिल्डिंग ब्लॉक्स आहेत, जे वेब HTML घटकांच्या जागी वापरली जातात.
मुख्य घटक (वेब HTML विरुद्ध)
React Native uses its OWN components (mapping to native views), NOT HTML:
VIEW → a container (like a <div>) — the basic layout building block
TEXT → display text (ALL text must be inside a <Text>, unlike web)
IMAGE → display images (local or remote)
TEXTINPUT → text input field (like an <input>)
SCROLLVIEW → a scrollable container
FLATLIST → an efficient scrollable LIST (for long lists — renders lazily)
TOUCHABLEOPACITY / PRESSABLE → handle taps (touchable areas)
BUTTON → a basic button
