flutter :未処理の例外:サービスのバインド.バインドが初期化される前にDefaultBinaryMessageにアクセスされました

1338 ワード

こんにちは人々.最後の多くの時間からフラッタに直面しています.バインドがフラッタでこのエラーを初期化する前に、DefaultBinaryMessengerにアクセスされました.
最後に、このエラーを解決することにしました.それで、あなたの時間を浪費することなくこの記事を始めましょう.
問題点
私は私のstacktraceでこの問題に直面している.
[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<…>
解決法とは
解決方法1
ここでは、すべての可能な解決策がここでチェックアウトしてください