React native navigation V5 헤더
constructor(props){ super(props) props.navigation.setOptions({ headerStyle: { shadowColor: 'transparent', // ios 타이틀 그림자 제거 elevation: 0, // android 타이틀 그림자 제거 }, headerTitle: ( 회원가입 ), headerTitleAlign: 'center', headerRight: () => ( 오른쪽 버튼 ), headerLeft : () =>( 왼쪽 버튼 ), } ); }