[react-navigation]v5.x(2)

jines100·2020년 2월 11일
0

전체 해더 셋팅

Stack.NavigatorscreenOptions 셋팅을 한다

<Stack.Navigator
      screenOptions={{
        headerStyle: {
          backgroundColor: '#f4511e',
        },
        headerTintColor: '#fff',
        headerTitleStyle: {
          fontWeight: 'bold',
        },
      }}
    > ...

부분 해더 셋팅

Stack.Screenoptions 값을 셋팅한다.

<Stack.Screen
        name="Home"
        component={HomeScreen}
        options={{
          title: 'My home',
          headerStyle: {
            backgroundColor: '#f4511e',
          },
          headerTintColor: '#fff',
          headerTitleStyle: {
            fontWeight: 'bold',
          },
        }}
      />...
profile
Front Developer

0개의 댓글