NA +91-8727899942 thecoderjob@gmail.com

CHAPTER - 3

Make First Program in react native.

Here is a simple example of a React Native program that displays a "Hello, World!" message.

For run : 

 - For Android ( command : react-native run-android )

 - For iOS ( command : react-native run-ios )

Here's is the Code !!

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

const App = () => {
  return (
    <View style={styles.container}>
      <Text>Hello, World!</Text>
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
  },
});

export default App;

Chapter 2

How to install react native || react native cli and expo cli

Previous chapter

Chapter 4

React native app file and folder structure.

Next chapter

Get In Touch

NA

thecoderjob@gmail.com

+91-8727899942

Popular Links

© www.thecoderjob.com. All Rights Reserved.               Designed by HTML Codex