[23.06.26]TIL

BJY·2023년 6월 26일
0

TIL

목록 보기
37/75

Bottom Tabs Navigator로 흔히 사용하는 하단 탭 이동 네이비게이터를 구현할 수 있음.
https://reactnavigation.org/docs/bottom-tab-navigator

<Stack.Navigator
          screenOptions={{
            headerStyle: { backgroundColor: "#351401" },
            headerTintColor: "white",
            contentStyle: { backgroundColor: "#3f2f25" },
          }}
        >
<Drawer.Navigator
      screenOptions={{
        headerStyle: { backgroundColor: "#351401" },
        headerTintColor: "white",
        sceneContainerStyle: { backgroundColor: "#3f2f25" },
      }}
    >

Stack의 경우 contentStyle, Drawer의 경우 sceneContainerStyle.

profile
개발자입니다.

0개의 댓글