Search code examples
iosreact-nativetabbar

React Native TabBarIOS.Item Center icon


I'm trying to make a React Native application which has a TabBar on its iOS side. I don't want any title to button (like "Blue Tab" and "History") and I would like to center vertically the Person icon on the right.

TabBarIOS

Currently I'm using the code available in the example


Solution

  • Okay I've just found how to do it :

    In the TabBarIOS.Item props I removed :

    title:"User"
    

    And I just had to set the title as empty :

    title=""
    

    lol