这是代码:

 // Bottom.js
<StyleProvider style={getTheme(commonColor)}>
    <Footer>
        <FooterTab>
            <Button active>
                <Icon active name="food" size={24}  />
                <Text active>Lunch Box</Text>
            </Button>
            <Button>
                <Icon name="coins" size={24} />
                <Text>Point</Text>
            </Button>
            <Button>
                <Icon name="face" size={24} />
                <Text>Profile</Text>
            </Button>
        </FooterTab>
    </Footer>

</StyleProvider>

// commonColor.js

// Footer
footerHeight: 55,
footerDefaultBg: '#ffffff',

// FooterTab
tabBarTextColor: '#FFF',
tabBarTextSize: platform === 'ios' ? 14 : 16,
activeTab: platform === 'ios' ? '#007aff' : '#fff',
sTabBarActiveTextColor: '#007aff',
tabBarActiveTextColor: '#fff',
tabActiveBgColor: platform === 'ios' ? '#1569f4' : '#1569f4',

结果如下:
android - React Native-Native Base Footer不会改变颜色-LMLPHP

我试过直接编辑FooterTab.js,但没有任何改变。

渲染上可能发生的唯一更改是tabActiveBgColor: platform === 'ios' ? '#1569f4' : '#1569f4'。而且我什至不知道为什么只有此代码才能正常工作,我什至没有在active上设置任何FooterTab

我所期望的是,当我将按钮设置为 Activity 状态时,文本将变为白色。

有什么办法吗?

最佳答案

我已经解决了在 FooterTab 中添加样式的问题。您无需在 native 基础 Footer 组件中进行任何样式设置。这是我的源代码-

     <Footer>
          <FooterTab style={{backgroundColor:"#FFF"}}>
              <Button style={{paddingLeft:0, paddingRight:0}}>
                  <Text}}>iFeeds</Text>
              </Button>
              <Button style={{paddingLeft:0, paddingRight:0}}>
                  <Text}}>iFeeds</Text>
              </Button>
          </FooterTab>
    <Footer>

android - React Native-Native Base Footer不会改变颜色-LMLPHP

10-06 07:18