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

2w2cym1i  于 2023-04-07  发布在  Flutter
关注(0)|答案(5)|浏览(255)

我在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插件吗?

4ktjp1zp

4ktjp1zp1#

我不认为任何共享插件提供Flutter web支持。尽管如此,你可以使用clipboard插件来复制用户需要共享的内容,并要求他们粘贴并发送给他们的朋友。

zkure5ic

zkure5ic2#

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

cs7cruho

cs7cruho3#

我已经启动了一个插件,它可以检测应用程序是在桌面还是移动的上运行。https://pub.dev/packages/share_everywhere
如果你在桌面上,它会弹出你选择的网络,在移动的上,它将使用标准的flutter共享库。
让我知道你的想法和我如何改进

l0oc07j2

l0oc07j24#

您可以在Flutter Web上使用url_launcher package。您可以轻松地在Google上找到要共享的URL。

polkgigr

polkgigr5#

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

相关问题