What is the difference between React Native and React?

后端 未结 30 2603
粉色の甜心
粉色の甜心 2020-11-28 00:22

I have started to learn React out of curiosity and wanted to know the difference between React and React Native - though could not find a satisfactory answer using

30条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 00:49

    Here are the differences that I know about:

    1. They have different html tags: React Native is using for handling text and instead of in React.
    2. React Native is using Touchable components instead of a regular button element.
    3. React Native has ScrollView and FlatList components for rendering lists.
    4. React Native is using AsyncStorage while React is using local storage.
    5. In React Native routers function as a stack, while in React, we use Route components for mapping navigation.

提交回复
热议问题