反应本机路由器流量标签栏位置顶部activebackground颜色不起作用帮助我

时间:2018-09-28 11:01:33

标签: react-native react-native-router-flux

这是我的场景,具有带有顶部位置的标签栏。 我已经尝试了很多解决方案,但没有成功。 有什么方法吗? 标签栏底部与activebackgroundcolor一起使用,但顶部位置不起作用。

        [In scene activeBackgroundColor color is not as given to tab it is not working can any one help me?][1]




 <Scene
                      key="Forums"
                      hideNavBar={false}
                      title="Forums"
                      back={false}
                      navigationBarStyle={{ backgroundColor: "#283593" }}
                      headerTintColor="white"
                      icon={FourmsIcon}
                      renderRightButton={<RightProfileIcon />}
                    >
                      <Tabs
                        tabBarPosition="top"
                        tabs={true}
                        hideNavBar={false}
                        //     showLabel={false}
                        activeBackgroundColor="#283593"
                        inactiveBackgroundColor="#FFF"
                        tabBarStyle={{ backgroundColor: "#FFFFFF" }}
                        activeTintColor="#283593"
                        wrap={false}
                        //   showIcon={true}
                        indicatorStyle={{ backgroundColor: "#283593" }}
                      >
                        <Scene
                          key="Member"
                          component={ForumsMember}
                          title="Member"
                          // icon = {Member}
                        />

                        <Scene
                          key="Admin"
                          component={FriendsScreen}
                          //  icon = {Member}
                          title="Admin"
                        />
                      </Tabs>
                    </Scene>

0 个答案:

没有答案