Closed bartgryszko closed 6 years ago
Hi, thank you for creating and maintaining this lib! I PR small feature for rendering custom tabs. If you have any feedback let me know & feel free to merge it if you find it useful. Example:
<TabNavigator.Item selected={this.state.selectedTab === 'home'} renderTab={() => ( <HomeTab selected={this.state.selectedTab === 'home'} onPress={() => this.setState({ selectedTab: 'home' })} /> )}> <HomeScene /> </TabNavigator.Item>
Is still something you're using as a pattern @bgryszko ?
Will close since this issue is more than a year, feel free to a open a new if this is still a issue.
Hi, thank you for creating and maintaining this lib! I PR small feature for rendering custom tabs. If you have any feedback let me know & feel free to merge it if you find it useful. Example: