Skip to main content

React native

 React Native is an open-source UI software framework created by Facebook, Inc. It is used to develop applications for Android, Android T V, iOS, macOS, tvOS, Web, Windows and UWP by enabling developers to use the React framework along with native platform capabilities.More..

History:
React Native is a mobile app development platform developed by Facebook for its internal app development. It was open sourced in March 2015 for iOS mobile app development. By September, an Android version was released too. Later, it provided support for Windows and Tizen platforms as well.

Facebook


Example:

import React from 'react';
import { Text, View } from 'react-native';

const HelloWorldApp = () => {
  return (
    <View
      style={{
        flex: 1,
        justifyContent: "center",
        alignItems: "center"
      }}>
      <Text>Hello, world!</Text>
    </View>
  )
}
export default HelloWorldApp;