Answers for "fit bigger images inside small area react native\\"

1

react native image fit container

<Image
  style={{
    alignSelf: 'center',
    height: 150,
    width: 150,
    borderWidth: 1,
    borderRadius: 75
  }}
  source={{uri:'https://facebook.github.io/react/img/logo_og.png'}}
  resizeMode="stretch"
/>
// source: https://medium.com/the-react-native-log/tips-for-react-native-images-or-saying-goodbye-to-trial-and-error-b2baaf0a1a4d
Posted by: Guest on November-27-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language