I am wondering how to share a file in a flutter app?
I saw some old references to using Intents with mojo, but that no longer seems to be present. This seems like a sta
I'm posting this reply, since the accepted answer doesn't actually answer the question.
using flutter-share from this github repo you can share files by just adding it as dependency, import it, and then instantiate the Share class with the named constructor file like so: Share.file(path: where mimeType, title and text are optional, and then call share on it.
It is fully functional for Android, the IOS part is currently being developed to match the Android part (only having plainText share at the moment).