728x90
반응형
static navigationOptions = ({navigation}) => {
// // 헤더의 오른쪽에 버튼 만들기
// headerRight: () => (
// <Button
// title="Info"
// color='red'
// />
// ),
return{
// 헤더의 왼쪽에 버튼 만들기
headerLeft: () => (
<Button
onPress={() => navigation.openDrawer()}
title="Draw"
color='red'
/>
),
// // 헤더의 텍스트를 가운데로 정렬
headerTitleAlign: 'center',
}
};
728x90
반응형
'React Native' 카테고리의 다른 글
React native Drawer 커스텀 메뉴 (0) | 2020.01.28 |
---|---|
React native Drawer Navigator 안에 StackNavigator 넣기 (0) | 2020.01.27 |
react-native 해더 중앙 정렬 및 버튼 (0) | 2020.01.27 |
React Native 비동기 처리 async / await (0) | 2020.01.22 |
React native Async Storage (0) | 2020.01.21 |