Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fixing video upload from android #45

Open
@nnajjar01

Description

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions

        AltStyle によって変換されたページ (->オリジナル) /