React Native મુખ્ય ઘટકોનો એક સમૂહ પ્રદાન કરે છે — જેમ કે View, Text, Image, ScrollView, TextInput — જે મૂળ UI તત્વો સાથે મેપ કરે છે. તે React Native UI ના મૂળભૂત બંધારણ બ્લોક્સ છે, જે વેબ 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
