5

我正在使用 react-native-router-flux ^4.0.0-beta.21 和 react-native-vector-icons 中的导航选项卡。选择场景时如何更改图标或更改所选场景的图标颜色?

<Scene
        key='navigationTab'
        tabs
        tabBarStyle={styles.tabBarStyle}
        showLabel={false}
>
        <Scene
                key='home'
                hideNavBar
                icon={SimpleLineIcon}
                name='home'
                size={25}
                component={PostList}
                initial
        />
        <Scene
                key='profile'
                hideNavBar
                icon={FontAwesomeIcon}
                name='user-o'
                size={25}
                component={Register}
        />
</Scene>

现在我已经定义了一个像下面这样的图标,但是我如何传递一个像焦点道具这样的东西呢?

const iconBack = () => (
        <TouchableHightLight onPress={console.log('home')} >
                <MaterialIcon
                        name='keyboard-arrow-left'
                        size={28}
                />
        </TouchableHightLight>
);
4

4 回答 4

8

您可以接收focused作为图标渲染函数的参数,然后检查当前图标是否已聚焦。

例如:

const SimpleLineIcon= ({ title, focused }) => {
    let image;

    switch (title) {
        case 'firstTab':
            image = focused ? require('firstTabSelected.gif') : require('firstTab.gif');
            break;

        case 'secondTab':
            image = focused ? require('secondTabSelected.gif') : require('secondTab.gif');
            break;
    }

    return ( <Image source={image} /> );
}
于 2017-09-27T19:18:29.713 回答
4

我正在使用常量来调用我的 tabIcons

import Icon from 'react-native-vector-icons/FontAwesome'

const iconProfile = () => (
    <Icon color='#f53d3d' name='user-o' size={25} />
)

...

<Scene
   key='profile'
   hideNavBar
   icon={iconProfile}
   name='profile'
   component={Register}
/>
于 2017-09-22T00:06:25.703 回答
0

您可以定义状态,然后相应地更改状态:下面的代码将帮助您解释场景。

import Icon from 'react-native-vector-icons/FontAwesome' (您可以将其替换为您自己的图标)

注意:在你的类中添加代码它是一个成员函数。

constructor(){
  super()
  this.state={
focused:false,
  }
}

   iconProfile = () => {
   if(this.state.focused==false)

return(
<TouchableOpacity onPress={()=>{
  this.setState({focused:true})

}}>
    <Icon color='#f53d3d' name='user-o' size={25} />
    </TouchableOpacity>
)
    else{

      
return(


  <TouchableOpacity>

  <Icon color='green' name='user-o' size={25} />
  </TouchableOpacity>
  
)


   }
}

对于场景:

<Scene key='tabbar' tabs={true} initial showLabel={false} hideNavBar tabBarStyle={{paddingTop:15}}>
<Scene
              key="practice"
              component={practice}
              title="practice"
              hideNavBar
              icon={this.iconProfile}



   />

提示:您也可以使用 touchableWithoutFeedback 表单 react native(目的是显示按钮没有反馈)

于 2020-11-15T16:35:52.170 回答
-1
const SimpleLineIcon= ({ focused, title }) => {
    let image;

    switch (title) {
        case 'firstTab':
            image = require('firstTabSelected.gif') : require('firstTab.gif');
            break;

        case 'secondTab':
            image = require('secondTabSelected.gif') : require('secondTab.gif');
            break;
    }

    return ( <Image source={image} /> );
}
于 2017-10-27T15:19:36.937 回答