繁体   English   中英

使用 flutter WEB 将内容分享到社交媒体

[英]Share content to social media using flutter WEB

我已经使用了几个库在 flutter android/iOS 上共享内容,直到最近我想在 flutter WEB 上实现共享功能。 虽然我使用了相同的库,但它给出了 MissingPluginException 错误。 这很可能是因为 Flutter Web 平台没有配置。

Overflow on channel: social_share.  Messages on this channel are being discarded in FIFO fashion.  The engine may not be running or you need to adjust the buffer size if of
the channel.
Error: MissingPluginException(No implementation found for method shareWhatsapp on channel social_share)
    at Object.throw_ [as throw] (http://localhost:58884/dart_sdk.js:4314:11)
    at MethodChannel._invokeMethod (http://localhost:58884/packages/flutter/src/services/platform_channel.dart.lib.js:410:21)
    at _invokeMethod.next (<anonymous>)
    at http://localhost:58884/dart_sdk.js:37184:33
    at _RootZone.runUnary (http://localhost:58884/dart_sdk.js:37038:58)
    at _FutureListener.thenAwait.handleValue (http://localhost:58884/dart_sdk.js:32022:29)
    at handleValueCallback (http://localhost:58884/dart_sdk.js:32569:49)
    at Function._propagateToListeners (http://localhost:58884/dart_sdk.js:32607:17)
    at _Future.new.[_completeWithValue] (http://localhost:58884/dart_sdk.js:32450:23)
    at async._AsyncCallbackEntry.new.callback (http://localhost:58884/dart_sdk.js:32472:35)
    at Object._microtaskLoop (http://localhost:58884/dart_sdk.js:37299:13)
    at _startMicrotaskLoop (http://localhost:58884/dart_sdk.js:37305:13)
    at http://localhost:58884/dart_sdk.js:32824:9

代码:

class SocialMediaLogo extends StatelessWidget {
  final String logo;
  SocialMediaLogo(this.logo);

  @override
  Widget build(BuildContext context) {
    return Padding(
      padding: EdgeInsets.all(5),
      child: RaisedButton(
          onPressed: () async {
            SocialShare.shareWhatsapp("Hello World \n https://google.com")
                .then((data) {
              print(data);
            });
          },
          child: Image(
            image: AssetImage("icons/$logo.png"),
            height: 35,
            width: 35,
            fit: BoxFit.cover,
          )),
    );
  }
}

有没有办法做到这一点? 或者任何已实现的 Web 插件?

我认为还没有任何共享插件提供 Flutter web 支持。 尽管如此,您可以使用clipboard插件之类的东西来复制用户需要共享的内容,并要求他们粘贴并将其发送给他们的朋友。

flutter 现已推出 package。 您尝试使用 share_plus package https://pub.dev/packages/share_plus

对于文本,您可以使用share_plus:但仍然很难与之共享图像,但对于文本,它可以正常工作

我已经开始使用一个插件来检测应用程序是在桌面还是移动设备上运行。 https://pub.dev/packages/share_everywhere

如果您在桌面上会弹出您选择的网络,在移动设备上它将使用标准 flutter 共享库。

让我知道您的想法以及我可以如何改进

在 onPressed 方法中使用 setSate((){}) 方法并将您的逻辑放入其中。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM