cnting
cnting
使用WillPopScope监听点击返回键,该怎么将result返回,我用下面这个方式会陷入死循环 ```dart return WillPopScope( child: child, onWillPop: () { print('===>onWillPop'); BoostNavigator.of().pop({"sync": true}); return Future.value(true); }); ``` 能否将源码中的`_pendingResult[uniqueId].complete(result);`暴露出来?有点类似Android中的 `Activity#setResult()` flutter_boost分支:v3.0-hotfixes
在 `ShadowApplication#onCreate()` 中创建了两个 `BroadcastReceiver` 实例 ```java String receiverClassname = entry.getKey(); Class clazz = mPluginClassLoader.loadClass(receiverClassname); BroadcastReceiver receiver = ((BroadcastReceiver) clazz.newInstance()); //这个返回值没使用 mAppComponentFactory.instantiateReceiver(mPluginClassLoader, receiverClassname, null); ```
如题,VAO、VBO、EBO综合使用的例子显示空白