我正在尝试在 React Native 中格式化 ExponentJS Ex-Navigator 的底部边框。在我的一生中,我无法弄清楚如何隐藏 NavigationBar 的底部边框。
Best Answer-推荐答案 strong>
无需覆盖库中的硬编码样式
您可以在 ExNavigator 组件中应用样式,如下所示:
<ExNavigator
navigationBarStyle={{ borderBottomColor: 'transparent' }}
...
/>
你也可以在这里设置backgroundColor 和borderBottomWidth 。
关于ios - Ex-Navigator (ExponentJS) 中的导航栏格式,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/35097471/
|