share_it 0.3.1+2 copy "share_it: ^0.3.1+2" to clipboard
share_it: ^0.3.1+2 copied to clipboard

outdated

A plugin to share text, images and files. Written in Kotlin and Swift for both Android and iOS.

share_it #

pub package

A plugin to share text, images and files.

The Android version uses an androidx library. Also remember to add the necessary permissions in your app when needed.

Features:

  • iOS & Android support
  • iPad support
  • Share text, links, images and files
  • Common dart interface methods & specific platform methods

TODOs:

  • Share multiple items
  • Android 10 content preview support
  • Check Android < N support
  • Check external Android storage support

Example #

// just text (or a link)
ShareIt.text(
  content: 'Hello!!!', 
  androidSheetTitle: 'Title here!!'
);
// a link or just text if is an invalid url
ShareIt.link(
  url: 'https://www.google.com', 
  androidSheetTitle: 'Google'
);
// some file
ShareIt.file(
  path: await _imageBundlePath, 
  type: ShareItFileType.image
);

There are also specific platform methods if needed.

26
likes
0
pub points
83%
popularity

Publisher

unverified uploader

A plugin to share text, images and files. Written in Kotlin and Swift for both Android and iOS.

Homepage
Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on share_it