UFO ET IT

설정 방법

ufoet 2021. 1. 5. 08:27
반응형

설정 방법 반응 네이티브에서 대문자로 텍스트


<Text> some text </Text>React Native에서 대문자 로 설정하는 방법

<Text style={{}}> Test </Text>

해당 테스트를 TEST로 표시해야합니다.


@Cherniv 답변 주셔서 감사합니다

<Text style={{}}> {'Test'.toUpperCase()} </Text>

iOS textTransform 지원이 0.56 버전에서 react-native에 추가되었습니다. Android textTransform 지원이 0.59 버전에 추가되었습니다. 다음 옵션 중 하나를 허용합니다.

  • 없음
  • 대문자
  • 소문자
  • 대문자로하다

실제 iOS 커밋 , Android 커밋문서

예:

<View>
  <Text style={{ textTransform: 'uppercase'}}>
    This text should be uppercased.
  </Text>
  <Text style={{ textTransform: 'capitalize'}}>
    Mixed:{' '}
    <Text style={{ textTransform: 'lowercase'}}>
      lowercase{' '}
    </Text>
  </Text>
</View>

참조 URL : https://stackoverflow.com/questions/35813156/how-to-set-text-text-to-upper-case-in-react-native

반응형