screenshot_detect 1.0.3 copy "screenshot_detect: ^1.0.3" to clipboard
screenshot_detect: ^1.0.3 copied to clipboard

PlatformiOS

An iOS package for detecting when a user takes a screenshot and adding listeners to that action.

screenshot_detect #

This is an iOS-only plugin for detecting when user takes a screenshot through UIApplication.userDidTakeScreenshotNotification. It was heavily inspired by this package.

Getting Started #

  • Import the package

    import 'package:screenshot_detect/screenshot_detect.dart';
    
  • Create a ScreenshotDetect instance

     final ScreenshotDetect screenshotDetect = ScreenshotDetect();
    
  • Add an observer

     screenshotDetect.addListener(() {
       		print('Taken screenshot')
          exampleFunction();
        });
    
  • Dispose when done

      @override
      void dispose() {
        screenshotDetect.dispose();
        super.dispose();
      }
    

Author #

4
likes
130
pub points
0%
popularity

Publisher

unverified uploader

An iOS package for detecting when a user takes a screenshot and adding listeners to that action.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on screenshot_detect