Mindinventory / react-native-tabbar-interaction

Tabbar Component For React-Native
https://www.mindinventory.com/react-native-app-development.php
MIT License
818 stars 171 forks source link

Custom Screen #34

Closed Itesh12 closed 2 years ago

Itesh12 commented 2 years ago

How can i goto custom screen if i select and tab.

chiragramimi commented 2 years ago

How can i goto custom screen if i select and tab.

@Itesh12, You can use onTabChange prop to redirect to the custom screen. please look at the below snippet for it.

  <Tabbar
    tabs={tabs}
    tabBarContainerBackground='#6699ff'
    tabBarBackground='#fff'
    activeTabBackground='#6699ff'
    labelStyle={{ color: '#4d4d4d', fontWeight: '600', fontSize: 11 }}
    onTabChange={() => console.log('Tab changed')}
  />

let me know if you still haven't found out it.