Описание
Я использовал Wix реагировать на родную навигацию (V2) в своем приложении для реакции на родную. У меня есть ошибка, если выведите ID компонента.
Error ::
Possible Unhandled Promise Rejection (id: 0):
Error: Failed to execute stack command. Stack secondScreen not found.
Error: Failed to execute stack command. Stack secondScreen not found.
secondScreen.js
class SecondScreen extends React.PureComponent {
constructor(props) {
super(props);
this.navigationEventListener = Navigation.events().bindComponent(this);
}
componentDidDisappear() {
Navigation.pop(this.props.componentId)
}
render() {
const { handleSubmit } = this.props;
return (
<Text>SecondScreen</Text>
)
}
}
export default SecondScreen;
Подскажите, пожалуйста, как убрать предупреждение.