搜索文字更改。
react native开始了,我不知道该怎么做。我希望得到您的帮助。
enter link description image here
主索引
<Headers />
<Router>
<Scene>
<Scene key="maintabs" tabs={true} hideNavBar tabStyle={{ borderWidth: 0.5, borderColor: '#d2d6dd' }} >
{/***************** HOME ****************/}
<Scene
key="home"
title="HOME"
lazy
iconName={
Platform.OS === 'ios'
? 'ios-home'
: 'md-home'
}
icon={TabIconx}
onPress={() => {
Actions.mainsviews({ type: ActionConst.REFRESH });
}}>
<Scene key="mainsviews" component={BodyIdexs} />
</Scene>
{/*************** HOME **************/}
{/**************** PRODUCT *****************/}
<Scene
key="products"
title="PRODUCTS"
iconName={
Platform.OS === 'ios'
? 'ios-apps'
: 'md-apps'
}
activeT={this.props.focused}
icon={TabIconx}
onPress={() => {
Actions.productsviews({ type: ActionConst.REFRESH });
}} >
<Scene key="productsviews" component={ProducIdexs} />
</Scene>
{/**************** PRODUCT END *****************/}
</Scene>
</Scene>
<Router>
我使用事件还是类似的结构?