Answers for "ways to show image in react native"

6

ways to show image in react native

<Image
  source={require("relative_path_to_image")}
  style={{ width: 100, height: 100 }}
/>
Posted by: Guest on October-30-2020
4

add image in react native

<Image
  source={{ uri: 'app_icon' }}
  style={{ width: 40, height: 40 }}
/>
Posted by: Guest on June-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language