React-navigation: how to style a big middle button in tab navigation?

后端 未结 3 2011
青春惊慌失措
青春惊慌失措 2021-02-04 15:12

So I have this requirement. To make tab navigation with this exact appearance:

I had no problem styling the tab bar with the gradient and the buttons. I created my own

3条回答
  •  独厮守ぢ
    2021-02-04 15:35

    Try this

    
                 {
                            let iconName;
                            iconName = focused ? constants.images.bottomHome : constants.images.bottomHome //for icon or image
                            return (
                                
                                    
                                
                            )
                        }
                    }}
                    component={HomeScreen} />
    
    

提交回复
热议问题