mcnamee / react-native-starter-kit

:rocket: A React Native boilerplate app to get you up and running very, very quickly :rocket:
MIT License
3.35k stars 863 forks source link

Question : How to move tabbar in android to bottom #132

Closed yopichy closed 6 years ago

yopichy commented 6 years ago

Hi @mcnamee , sorry i want to ask you again. I try to search in native-base-theme/variables/platform.js but i don't find any code related to determine the position of the tab for ios or android. Previously in v2.x.x you just using scene with custom style in theme folder, but in v3 using Tabs from react-native-router-flux, i've never used it. Can you tell me, which file should i change to move tabs from top to bottom in android like ios? Because i want to add drawer for this new starter kit. Thanks man!

mcnamee commented 6 years ago

Hi there, Please see the react-native-router-flux API docs. Specifically tabBarPosition under Tabs

yopichy commented 6 years ago

Hi @mcnamee , I just adding property tabBarPosition : 'bottom' in navigation.js and it works! Thank you very much!