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
