AnadaYuKi

Results 2 issues of AnadaYuKi

flutter_boost版本是v3.0-null-safety-preview.10, 使用方法是按照文档中的写的。 @override void onPageShow() { super.onPageShow(); print("pagelife-onPageShow"); } @override void onPageHide() { super.onPageHide(); print("pagelife-onPageHide"); } @override void onForeground() { super.onForeground(); print("pagelife-onForeground"); } @override void onBackground() { super.onBackground(); print("pagelife-onBackground"); }...

### 请描述遇到的问题,以及您所期望的正确的结果 Native直接打开 Flutter的 Platformview,在返回原生页面,Platformview不会 dealloc; 而原生打开 Flutter 页面,Flutter 页面打开 一个 Platformview 再返回上一页面会 dealloc。 ### 请说明如何操作会遇到上述问题 flutter_boost-3.0-null-safety-release.2 的 example 中的 iOS 项目,用 XCode 打开 Runner 工程,将UIViewControllerDemo 中的 options.pageName = @"flutterPage"...