async ActiveSlide() {
let value = await this.props.navigation.getParam("index");
if (value !== undefined) {
await this.setState({ //вот тут изменения
activeSlide: value
});
this.props.navigation.state.params.index = undefined;
}
}
HomePageList
_GoHome = async (index) => {
this.props.navigation.navigate(HOMEPAGE,{index:index});
};
HOMEPAGE
componentDidMount(){
console.log("index",this.props.navigation.state.params.index)
}