2017-05-05 30 views

答えて

0

、そのようなあなたのTabViewrenderLabelプロパティにコールバックを渡してみてください。

_renderLabel = (scene) => { 
 
    const myStyle = { /* Defined your style here.. */ } 
 
    // grab the label from the scene. I'm not really sure 
 
    // about the structure of scene, but you can see it using console.log 
 
    const label = scene.label 
 

 
    return (
 
    <Text style={myStyle}>{label}</Text> 
 
); 
 
} 
 

 
_renderHeader =() => { 
 
    return <TabBar renderLabel={this._renderLabel} /> 
 
}

+0

私はあなたにこの(編集した質問を)お願いするもので、本当に申し訳ありません.. ..タブの変更時にテキストの色を変更する方法はありますか –

関連する問題