Apply multiple CSS style in react native | 두개의 CSS 스타일 적용

Darcy Daeseok YU ·2022년 2월 21일
0

How to apply muliple css in react-native

흠 ...

인강에서 말하는 방법이 왜 내 컴퓨터에서는 안되나? 신기...
Es6 기본 문법 쉽다. 안된다.

 <Text style={{ ...styles.btnText, color: working ? "white" : theme.grey }}>

방법을 찾아본다.

첫번째 방법
Object.assign() 메소드를 사용한다.

<Text
            style={Object.assign({}, styles.btnText, {
              color: !working ? "white" : theme.grey,
            })}
          >
</Text>

흠..안된다.

두번째 방법
array operator in react native
(caution: This will not work in regular React.)

<Text style={[styles.btnText, { color: working ? "white" : theme.grey }]}>

잘된다.

profile
React, React-Native https://darcyu83.netlify.app/

0개의 댓글