add an image in react native code example

Example 1: ways to show image in react native

<Image
  source={require("relative_path_to_image")}
  style={{ width: 100, height: 100 }}
/>

Example 2: add image in react native

<Image
  source={{ uri: 'app_icon' }}
  style={{ width: 40, height: 40 }}
/>

Example 3: Image react native

Adding Image
Let us create a new folder img inside the src folder. We will add our image (myImage.png) inside this folder.

We will show images on the home screen.

App.js
import React from 'react';
import ImagesExample from './ImagesExample.js'

const App = () => {
   return (
      <ImagesExample />
   )
}
export default App
Local image can be accessed using the following syntax.

image_example.js
import React, { Component } from 'react'
import { Image } from 'react-native'

const ImagesExample = () => (
   <Image source = {require('C:/Users/Tutorialspoint/Desktop/NativeReactSample/logo.png')} />
)
export default ImagesExample