Tony
Results
2
comments of
Tony
> @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; > }); >...
> 是不是tab的index设置的有重复 tab设置了AutomaticKeepAliveClientMixin会有影响吗?