screenshot_detect 1.0.1
screenshot_detect: ^1.0.1 copied to clipboard
iOS-only screenshot detection.
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_callback/screenshot_callback.dart'; -
Create an
ScreenshotCallbackinstancefinal ScreenshotCallback screenshotCallback = ScreenshotCallback(); -
Add an observer
screenshotCallback.addListener(() { print('Taken screenshot') exampleFunction(); }); -
Dispose when done
@override void dispose() { screenshotCallback.dispose(); super.dispose(); }
Author #
- glebosotov - [email protected]