react-navigation createStackNavi

2020-09-13  本文已影响0人  ugpass

createStackNavigator
https://stackoverflow.com/questions/51181965/react-navigation-header-has-a-faint-line

<Stack.Navigator
        screenOptions={{
          headerStyle: {
            backgroundColor: currentTheme.themeColor,
            borderBottomWidth: 0,
            elevation: 0,//去掉安卓导航下面白线
            shadowOpacity: 0,//去掉iOS导航下面白线
          },
          headerTintColor: '#fff',
          headerTitleStyle: {
            fontWeight: 'bold',
            alignSelf: "center",
          }, 
        }} 
      >

** createBottomTabNavigator** 去掉tabbar上面的白线
https://stackoverflow.com/questions/60337002/white-line-above-bottomtabnavigator-in-react-native

tabBarOptions={{ 
    style: styles.container
}}

const styles = StyleSheet.create({
  container:{ 
    backgroundColor: currentTheme.themeColor,
    borderTopWidth: 0
  }
})
上一篇 下一篇

猜你喜欢

热点阅读