snapkit icon indicating copy to clipboard operation
snapkit copied to clipboard

fixing video upload from android

Open nnajjar01 opened this issue 3 years ago • 0 comments

The problem is that snapkit package is currently unavailable to share video on Android.

actually, it's not unavailable as it is described on the package readme page, you can share the video if it's an asset only, and that is because the share function (line 200) uses the rootBundle to load the video The solution is too simple just replace this line: ByteData byteData = await rootBundle.load(videoPath!); with this line: Uint8List byteData = await File(videoPath!).readAsBytes();

now we can call the share function and just give it the video path.

nnajjar01 avatar Oct 08 '22 12:10 nnajjar01