# React Native 에서 Text에 borderRadius 적용 방법
- 문제 현상
리액트 네이티브에서 Text 컴포넌트에 borderRadius가 적용되지 않는 현상이 있었다.
- 해결 방법
Text를 View로 감싸주고, View에 borderRadius 를 적용해주면 된다.
export default function RadiusText() {
return (
// Text를 View로 감싸준다
<View style={styles.textContainer}>
<Text style={styles.textContent}>카레유</Text>
</View>
);
}
const styles = StyleSheet.create({
// View에 borderRadius 를 적용한다.
textContainer: { borderRadius: 30, padding: 20 },
textContent: { fontSize: 12 }
});
'개발(Development) > ReactNative(리액트네이티브)' 카테고리의 다른 글
[React Native] ScrollView 수평(Horizontal) 스크롤 구현 방법 (0) | 2024.01.14 |
---|---|
[리액트 네이티브] Image에 외부URL / 로컬이미지파일 설정 방법 (0) | 2024.01.12 |
[리액트 네이티브] Pressable 이벤트 버블링 막기(stopPropagation) (0) | 2024.01.12 |
[리액트 네이티브] ScrollView에서 flexDirection: row 좌우 수평 정렬 및 flexWrap 줄바꿈 적용 방법 (0) | 2024.01.12 |
댓글