기존 StyleSheet 로 만드는 건 코드가 너무 장황해진다..
React에서 잘 써먹은 요 녀석을 활용하자 🤗
모듈 설치
yarn add styled-components
yarn add -D babel-plugin-styled-components @types/styled-components @types/styled-components-react-native
babel.config.js
에 추가
module.exports = {
...
plugins: ['babel-plugin-styled-components'],
};
vscode 플러그인 vscode-styled-components
`` 안에 css 문법 적용
// ...
import styled from 'styled-components/**native**';
const App = () => {
return (
<Container>
<Text>Hello world</Text>
</Container>
);
}
const Container = styled.View`
flex: 1;
justify-content: center;
align-items: center;
`
export default App;
const App = () => {
return (
<Container background="">
<Text>Hello world</Text>
</Container>
);
}
interface IContainerProps {
background: string;
}
const Container = styled.View`
flex: 1;
justify-content: center;
align-items: center;
background-color: ${(props:IContainerProps) => props.background ? props.background : 'white'};
`
export default App;
추가적인 부분 Styed Components 참고