프론트엔드 앱/Styled-Components

react-navigation 하단줄 없애기 #borderBottom

세리둥절 2021. 12. 23. 19:17
반응형

 

✔️ 필요성

줄 너무 심각하게 마음에 안든다 어떻게 없애지

 

 

 

 

 

✔️ 문제 해결

BottomBorder라고 생각했었는데 알고보니 그림자였다. 삽질 다 해봤는데 headerShadowVisible: false로 해주면 없어진다! 

<Stack.Navigator>
      <Stack.Screen
        name="MainTab"
        component={MainTab}
        options={{headerShown: false}}
      />

      <Stack.Screen
        name="ContentList"
        component={ContentListScreen}
        options={{
          headerShadowVisible: false,
        }}
      />
     //...
    </Stack.Navigator>
반응형