src
react native 네비게이터 헤더 설정
escher_
2021. 8. 8. 22:51
https://reactnavigation.org/docs/headers
1. 제목만 문자열로 설정할 때
<NavigationContainer>
<AppStack.Navigator initialRouteName="Home">
<AppStack.Screen
name="Home"
component={HomeScreen}
options={{title:'wellog'}} /* header title 설정 */
/>
</AppStack.Navigator>
</NavigationContainer>