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 }]}>
잘된다.