728x90
반응형
constructor(props){
super(props)
props.navigation.setOptions({
headerStyle: {
shadowColor: 'transparent', // ios 타이틀 그림자 제거
elevation: 0, // android 타이틀 그림자 제거
},
headerTitle: (
<Text>회원가입</Text>
),
headerTitleAlign: 'center',
headerRight: () => (
<Text>오른쪽 버튼</Text>
),
headerLeft : () =>(
<Text>왼쪽 버튼</Text>
),
}
);
}
728x90
반응형
'React Native' 카테고리의 다른 글
ScrollView 와 FlatList 방향 겹치는 문제. (0) | 2020.03.02 |
---|---|
깊은 복사 (0) | 2020.02.27 |
React native Fetch 네트워크 통신 (0) | 2020.02.24 |
React native touch 이벤트 (0) | 2020.02.24 |
문자열 자르기 (0) | 2020.02.17 |