FLUTTER ECOSYSTEM

flutter-moum/flutter_screenshot_callback

一个 Flutter 插件,可在 iOS 和 Android 上检测移动设备截图并执行回调函数。🚀

flutter_screenshot_callback 项目封面
Stars
110
Forks
173
最近推送(UTC)
2024年6月13日
项目状态
未归档
Flutter Moum GitHub avatar
GITHUB Organization

Flutter Moum ↗

语言KotlinDartJavaRubySwiftObjective-C

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

Screenshot Callback

Flutter plugin that allows you to detect mobile screenshot and execute callback functions on iOS and Android. 🚀

https://img.shields.io/pub/v/screenshot_callback.svg https://img.shields.io/github/license/flutter-moum/flutter_screenshot_callback

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:screenshot_callback/screenshot_callback.dart';

Initialize ScreenshotCallback with the scopes you want:

ScreenshotCallback screenshotCallback = ScreenshotCallback();
addListener

Then invoke addListener method of ScreenshotCallback. Add custom functions that you want to excute after detect screenshot. e.g:

screenshotCallback.addListener(() {
  //Void funtions are implemented
  print('detect screenshot');
});
dispose

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

screenshotCallback.dispose();

Issues and Feedback

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

Author

License

MIT