【问题标题】:how to share image with text in flutter on whatsapp or else?如何在whatsapp或其他地方分享带有文本的图像?
【发布时间】:2021-04-12 10:49:11
【问题描述】:

我使用此代码从 MySQL 数据库中获取图像并将它们显示在容器上。你能指导我如何用文字分享这张图片吗?或者我需要使用什么插件。

        Image image;

        showImage(String image){
        return Image.memory(base64.decode(image), fit: BoxFit.fill,);
        }

        //show in Container

        Container(
        padding: EdgeInsets.all(10),
        width: MediaQuery.of(context).size.width * 0.8,
        height: MediaQuery.of(context).size.height * 0.3,
        color: Colors.white,
        child: showImage(widget.product_detail_pictue),
        ),
        

        child: image = showImage(product.image)),

        it also show image but failed to share.

【问题讨论】:

    标签: php android ios mysql flutter


    【解决方案1】:

    您可以使用Share 包。`

    它允许您通过平台的共享对话框共享来自 Flutter 应用的内容。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2011-11-20
      • 2016-07-04
      • 2021-11-14
      • 1970-01-01
      • 2015-05-09
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多