screenshot_detect 1.0.4
screenshot_detect: ^1.0.4 copied to clipboard
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
ScreenshotDetectinstancefinal ScreenshotDetect screenshotDetect = ScreenshotDetect(); -
Add an observer
screenshotDetect.addListener(() { print('Taken screenshot') exampleFunction(); }); -
Dispose when done
@override void dispose() { screenshotDetect.dispose(); super.dispose(); }
Author #
- glebosotov - gleb.osotov@gmail.com