728x90
반응형

style 에 borderRadius 를 적용하면, 안드로이드에서는 radius가 적용되지만, ios에는 적용이 제대로 되지않는다.

 

<ImageBackground
     style={{
     width: deviceWidth - 2 * wrapperPadding,
     height: cardHeight,
     }}
     imageStyle={{ borderRadius: 15 }}
     source={require('../../assets/example/banner.png')}
></ImageBackground>

 

imageStyle props 에 넣어주면 된다.

728x90
반응형

+ Recent posts