prevent_screen_recording 0.0.2 copy "prevent_screen_recording: ^0.0.2" to clipboard
prevent_screen_recording: ^0.0.2 copied to clipboard

A flutter project to prevent screen recording in iOS

Prevent Screen Recording iOS

Flutter plugin that allows you to detect mobile recording and execute callback functions on iOS 🚀

UsageIssues and FeedbackAuthorLicense

Feedback welcome and Pull Requests are most welcome!

Usage #

Import the package #

To use this plugin, follow the plugin installation instructions.

Use the plugin #

Add the following import to your Dart code:

import 'package:prevent_screen_recording/prevent_screen_recording.dart';

Initialize PreventScreenRecording with the scopes you want:

PreventScreenRecording preventScreenRecording = PreventScreenRecording();

addListner #

Then invoke addListner method of PreventScreenRecording. Add custom functions that you want to excute after detect recording. e.g:

preventScreenRecording.addListner(() {
  //Void funtions are implemented
  print('detect recording...');
});

dispose #

You need to call dispose method to terminate PreventScreenRecording before you exit the app e.g:

preventScreenRecording.dispose();

Issues and Feedback #

Please file issues to send feedback or report a bug. Thank you !

Author #

License #

MIT

9
likes
100
pub points
80%
popularity

Publisher

unverified uploader

A flutter project to prevent screen recording in iOS

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on prevent_screen_recording