无法在Flutter中按路径找到图像



无法共享知道其路径的图像。我用";images/image.png";并获得:未处理的异常:PlatformException(images/baws.png:打开失败:ENOENT(没有这样的文件或目录(,null,null,null(

shareImage(BuildContext context, String imagePath) async {
final ByteData bytes = await rootBundle.load(imagePath);
await Share.file('Essi', imagePath, bytes.buffer.asUint8List(), 'images/png');
}

有人知道怎么解决这个问题吗?

您必须将图像目录添加到您的pubspec.yaml

assets:
# path to image dir
- assets/images/ 

确保你做了flutter pub get

如果你已经这样做了,试着重新启动你的应用程序。

如果没有成功,我们将需要更多的信息来调试

相关内容

  • 没有找到相关文章

最新更新