Reputation: 1
So, I am trying to develop a page using react-native. The UI for the page is below. How do I implement the profile picture icon?
Upvotes: 0
Views: 3155
Reputation: 216
First you need to import the Image using react native
import { Image} from 'react-native';
then inside your view you need to style it as you want
<Image
style={{width: 100, height: 100}} // required Dimensions and styling of Image
source={require('./images/avatar.png')} // enter your avatar image path
/>
Upvotes: 1