在React Native中,是否可以从NavigationExperimental
的{{1}}删除导航栏的1px细线?
答案 0 :(得分:2)
您可以将样式道具传递给NavigationHeader。从代码https://github.com/facebook/react-native/blob/master/Libraries/CustomComponents/NavigationExperimental/NavigationHeader.js看起来你需要像
这样的东西<NavigationHeader style={{borderBottomWidth: 0}} ...etc etc/>
未经测试:)