Answers for "image rounded corners react native"

0

how to give radius to imagebackground in react native

<ImageBackground
  style={{height: 100, width: 100}}
  imageStyle={{ borderRadius: 6}}
  source={{ uri: 'www.imageislocatedhere.com }}
>
Posted by: Guest on July-23-2021
1

how to create round image in react native

<Image 
  source={{
    uri: 'https://raw.githubusercontent.com/AboutReact/sampleresource/master/old_logo.png'
  }} 
  style={{width: 400, height: 400, borderRadius: 400/ 2}} 
/>
Posted by: Guest on April-06-2021

Code answers related to "image rounded corners react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language