React Native TabBarIOS.Item Center图标

时间:2016-04-13 12:31:03

标签: ios react-native tabbar

我正在尝试制作一个在其iOS端有一个TabBar的React Native应用程序。我不希望任何标题按钮(如“蓝色标签”和“历史记录”),我想垂直居中右边的人物图标。

TabBarIOS

目前,我正在使用example

中提供的代码

2 个答案:

答案 0 :(得分:5)

好的,我刚刚找到了怎么做:

在我移除的TabBarIOS.Item道具中:

title:"User"

我只需要将标题设置为空:

title=""

lol

答案 1 :(得分:1)

要垂直对齐,您可以在样式中设置(flex:1,)flexDirection:'row'。这篇文章帮助我在反应原生中与flexbox对齐,希望它也能帮到你:) http://moduscreate.com/aligning-children-using-flexbox-in-react-native/