headerStyle = () => {
this.props.navigation.setOptions({
title: 'Customizing',
headerStyle:{
backgroundColor: 'blue'
},
headerTintColor: 'yellow',
headerTitleStyle: {
fontWeight: 'bold',
color: 'greeen'
},
headerBackTitle: 'BACK',
headerRight: () => (
<Button
title="Go Back"
onPress={()=>{
this.props.navigation.navigate('Home')
}}
color='orange'
/>
)
})
}
Home 부분은 다른질문자가 있어서 되었지만 User.js 부분이 되지않아서 질문합니다.
저는 안드로이드로 강의를 듣고있습니다.