ttCoder

Results 26 comments of ttCoder

``` let delegate = FlutterBoostDelegate() // 启动 FlutterBoost FlutterBoost.instance().setup(application, delegate: delegate) { [weak self] engine in self?.flutterEngine = engine } ``` 代理做成单利试试 let delegate = BoostDelegate.shared

> opaque参数给false了吗? 类似 BoostNavigator.instance.push("study_task_guide", arguments: {"animated": false}, opaque: false, withContainer: true); 都试了,无效

宝~, 这个问题能不能解决一下~ 很多原生需求,在现有原生页面的VC之上 模态推出一个和flutter一样的页面结构 - - 我想复用。。。。

> 1. 自定义一个 CustomContainerOverlayEntry 继承于 ContainerOverlayEntry > > class CustomContainerOverlayEntry extends ContainerOverlayEntry { > CustomContainerOverlayEntry(super.container) { > opaque = false; // 重点是这里 > } > } > 2. 设置自定义的overlay >...

> 1. 自定义一个 CustomContainerOverlayEntry 继承于 ContainerOverlayEntry > > class CustomContainerOverlayEntry extends ContainerOverlayEntry { > CustomContainerOverlayEntry(super.container) { > opaque = false; // 重点是这里 > } > } > 2. 设置自定义的overlay >...

> > > 1. 自定义一个 CustomContainerOverlayEntry 继承于 ContainerOverlayEntry > > > > > > class CustomContainerOverlayEntry extends ContainerOverlayEntry { > > > CustomContainerOverlayEntry(super.container) { > > > opaque = false;...