How to prevent user from sharing downloaded file in Flutter

Viewed 537

I'm working on an online course app where students can view streaming course videos. I also want to add the ability for students to download course videos for offline viewing, but I don't want them to be able to share those videos. Is this possible? If yes, how would I go about it? Thanks in advance for any lights on this.

1 Answers

You can store those videos on internal application documents directory so that user can not access those files directly.

To get the application documents directory, use path_provider package (official plugin by flutter team)

 final directory = await getApplicationDocumentsDirectory();
Related