ways to show image in react native

JavaScript
<Image
  source={require("relative_path_to_image")}
  style={{ width: 100, height: 100 }}
/><Image
  source={{ uri: 'app_icon' }}
  style={{ width: 40, height: 40 }}
/>

Source

Also in JavaScript: