React-Native 이미지 크기 조절 방법

Hong·2022년 4월 4일
0

React 사용 이미지 크기 조절 방법

// In normal css
.image{
   width: 100px;
   height: 100px;
   object-fit: cover;
 }

React-native 사용 이미지 크기 조절 방법

// in react-native StyleSheet
image:{
   width: 100;
   height: 100;
   resizeMode: "cover";
 }

이미지 사이즈보다 큰 부분 자르기

overflow: hidden;
profile
코딩 배우기

0개의 댓글