sjustfly
Results
3
issues of
sjustfly
[Bug]:
1
### 请描述遇到的问题,以及您所期望的正确的结果 在iOS上,当我从一个Flutter页面跳转原生UI的时候,在原生使用[self.navigationController setViewControllers:tmp animated:YES]; 重新调整了堆栈结构,会触发FBFlutterViewContainer类的 - (void)didMoveToParentViewController:(UIViewController *)parent { if (!parent) { //当VC被移出parent时,就通知flutter层销毁page [self detachFlutterEngineIfNeeded]; [self notifyWillDealloc]; } [super didMoveToParentViewController:parent]; } 这样会导致Flutter引擎被释放掉,最终返回上级Flutter页面,会导致触发下面函数的assert(self.allContainers[uniqueId] != nil);断言 - (void)activeContainer:(id)container forUniqueId:(NSString *)uniqueId {...