React Native 스타일링 (styled-components)
react-nativestyled-components@types/styled-components@types/styled-components-react-native
styled-components
설치
모듈
yarn add styled-components
타입
yarn add -D @types/styled-components @types/styled-components-react-native
사용법
import styled from 'styled-components/native';
export default function App () {
return (
<Container>
...
</Container>
)
}
const Container = styled.View`
flex: 1;
background: #efefef;
color: #232323;
`
발견 문제
Styled-Components Type 못찾는 버그
둘 다 설치한다.
yarn add -D @types/styled-components @types/styled-components-react-native