aarajput / wc_flutter_share

A Flutter plugin for sharing files & text with other applications.
Apache License 2.0
35 stars 19 forks source link

iOS Video Share #29

Closed DeepashreeBallodi closed 3 years ago

DeepashreeBallodi commented 3 years ago

Trying to share stored video with local path with text, but its not working. Video only not loading

final ByteData bytes = await rootBundle.load('$playListLocalPath');
await WcFlutterShare.share(
sharePopupTitle: 'share',
subject: 'This is subject',
text: 'This is text',
fileName: 'Name.mp4',
mimeType: 'video/mp4',
bytesOfFile: bytes.buffer.asUint8List());

aarajput commented 3 years ago

What is the size of video ?