how to put 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: photo in React native

// useing require is more secure
<Image 
	source = {require('C:/Users/Tutorialspoint/Desktop/NativeReactSample/logo.png')} 
/>

Example 4: react native image

<Image //change imagePath with the real path of your image, for example ./src/image/image.jpg
	source={require("imagePath")} 
/>