Onu*_*lak 5 mp3 share package flutter share-plus
我正在尝试使用 share_plus 包共享 mp3 文件。但每当我尝试按共享按钮时,都会收到此错误:
E/flutter ( 5629): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: PlatformException(Share callback error, prior share-sheet did not call back, did you await it? Maybe use non-result variant, null, null)
Run Code Online (Sandbox Code Playgroud)
我已经在等待这个过程了。这是我的代码:
onPressed: () async {
await Share.shareXFiles([XFile('assets/0.mp3')]);
}
Run Code Online (Sandbox Code Playgroud)