zhouteng0217 / ShareExtend

调用系统分享的Flutter组件,支持分享文本,图片,视频和文件
MIT License
176 stars 53 forks source link

Can't share both text and image iOS #30

Open matthewfx opened 4 years ago

matthewfx commented 4 years ago

ShareExtend.share(path, "test"); It just shares an image.

zhouteng0217 commented 4 years ago

@matthewfx Yeah, it is not support for sharing both text and image. It just providers a way for sharing with system ui and limited by system api.

matthewfx commented 4 years ago

Hopefully, you will add it one day - thanks!

JEuler commented 4 years ago

@matthewfx you can use a little trick here (I'm using it in my app) - just copy the text content to the clipboard and show user a toast, like "you can insert caption from clipboard" etc.

Clipboard.setData(ClipboardData(text: yourText));

rignaneseleo commented 4 years ago

Any news about this?

DeepashreeBallodi commented 3 years ago

Cant share video with Text also