有解决这个问题的办法吗?

堆栈跟踪:

[VERBOSE-2:ui_dart_state.cc(148)] Unhandled Exception: ServicesBinding.defaultBinaryMessenger was accessed before the binding was initialized.
If you're running an application and need to access the binary messenger before `runApp()` has been called (for example, during plugin initialization), then you need to explicitly call the `WidgetsFlutterBinding.ensureInitialized()` first.
If you're running a test, you can call the `TestWidgetsFlutterBinding.ensureInitialized()` as the first line in your test's `main()` method to initialize the binding.
#0      defaultBinaryMessenger.<anonymous closure> (package:flutter/src/services/binary_messenger.dart:73:7)
#1      defaultBinaryMessenger (package:flutter/src/services/binary_messenger.dart:86:4)
#2      MethodChannel.binaryMessenger (package:flutter/src/services/platform_channel.dart:140:62)
#3      MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:314:35)
<asynchronous suspension>
#4      MethodChannel.invokeMapMethod (package:f<…>

当前回答

在GitHub issue 47033上发布的答案解决了我的问题。

问题:https://github.com/flutter/flutter/issues/47033

对我有效的解决方案是:https://github.com/flutter/flutter/issues/47033#issuecomment-571936089

我认为这是一个关于flutter版本1.12.13+热修复的问题,也许降级flutter也会有所帮助。

其他回答

在我有版本v1.12.13+热修复之前。5,然后我切换到v1.14.4版本,它工作了。

错误提示您应该添加WidgetsFlutterBinding.ensureInitialized();,但由于这对我不起作用,我切换到其他版本。但有一件事要记住,你仍然必须添加WidgetsFlutterBinding.ensureInitialized();作为你主线的第一行!

如果您从孤立对象接收到这个错误,那么接受的解决方案就不起作用,这是毫无价值的。

WidgetsFlutterBinding.ensureInitialized();

只确保在主线程上的绑定。 我们正在努力消除这一限制,你可以在这里关注这个问题

https://github.com/flutter/flutter/issues/13937

不确定我是否有正确的答案,但在最近一次扑动升级后,我得到了同样的错误,并设法使其工作,所以我将分享我的发现。

看起来错误可能是由最近的破坏性更改引起的: https://groups.google.com/forum/ !味精/ flutter-announce / sHAL2fBtJ1Y / mGjrKH3dEwAJ。

因此,我们需要手动修改如下代码:

如果您正在运行一个应用程序,并且需要在调用runApp()之前访问二进制消息传递器(例如,在 插件初始化),然后需要显式调用 WidgetsFlutterBinding.ensureInitialized()。 如果您正在运行一个测试,您可以调用TestWidgetsFlutterBinding.ensureInitialized()作为中的第一行 测试的main()方法来初始化绑定。

或者,如果你是一个像我一样的新手,很难理解上面的内容和#38464,你可以通过切换到测试版来暂时避免这个问题。运行"颤振通道beta"突破性的更改还没有在beta通道中,所以在切换到beta通道后,至少现在不会得到这个错误。

在我的例子中,当使用方向时,

解决前:

void main() {
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]).then((_).{
runApp(MyApp());
});
}

解决用途:

void main() {
WidgetsFlutterBinding.ensureInitialized();
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp])
  .then((_) {
runApp(MyApp());
});
}

重点是在主类的第一行中添加WidgetsFlutterBinding.ensureInitialized()

只需在main.dart中添加这一行

WidgetsFlutterBinding.ensureInitialized(); 

您的代码看起来像

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  return runApp(MultiProvider(
    providers: [
      ChangeNotifierProvider.value(
        value: AppState(),
      )
    ],
    child: MyApp(),
  ));
}