We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如题
The text was updated successfully, but these errors were encountered:
的确没有处理replacement,这个在下一版本加上
Sorry, something went wrong.
@lds8988 A页面push到B页面,B页面push到C页面,然后C页面直接pop到A页面,按照目前您这个框架,B页面的didPageView()和didPageExit()都会调用,实际上按照产品的定义,从C页面直接pop到A页面,B页面的两个的didPageView()和didPageExit()是不需要埋点的,怎么解决这个问题?
C页面pop到A页面的方法如下:
Navigator.of(context).popUntil((Route route){ if (route.settings.name == "/"){ return true; } return false; });
@lds8988 A页面push到B页面,B页面push到C页面,然后C页面直接pop到A页面,按照目前您这个框架,B页面的didPageView()和didPageExit()都会调用,实际上按照产品的定义,从C页面直接pop到A页面,B页面的两个的didPageView()和didPageExit()是不需要埋点的,怎么解决这个问题? C页面pop到A页面的方法如下: Navigator.of(context).popUntil((Route route){ if (route.settings.name == "/"){ return true; } return false; });
我不是开发者
No branches or pull requests
如题
The text was updated successfully, but these errors were encountered: