Answers for "styling image size in react-native"

2

display image as big as possible react native

<Image style={{ flex: 1, width: "100%", resizeMode: "contain" }} source={{ uri: "https://picsum.photos/200" }}></Image>
Posted by: Guest on July-21-2021
1

resize image react native

flex: 1,
    width: 50,
    height: 50,
    resizeMode: 'contain'
Posted by: Guest on January-04-2021

Code answers related to "styling image size in react-native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language