React Native มี core components ชุดหนึ่ง — เช่น View, Text, Image, ScrollView, TextInput — ที่แมปไปยัง native UI element เหล่านี้คือ building block พื้นฐานของ UI ใน React Native ซึ่งใช้แทน HTML element ของเว็บ
Core components (เทียบกับ 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
