<TouchableOpacity
style={{flex:1, justifyContent: 'center', alignItems:'center' }} />
-->styled-component
const btn= styled.TouchableOpacity`
flex: 1;
justify-content: center;
align-items: center;
background-color: red;
`
style에는 속성값이 'center' justifyContent 로 들어가고 styled-components에서는
justify-content: center로 들어감
<Btn onPress={()=>navigation.navigate(....)}/>~~~~
>
#
1.use
import styled from 'styled-components/native'
npm i styled-components