screenshot_callback 3.0.1 screenshot_callback: ^3.0.1 copied to clipboard
Flutter plugin that allows you to detect mobile screenshot and execute callback functions on iOS and Android.
import 'package:flutter/material.dart';
import 'package:screenshot_callback/screenshot_callback.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late ScreenshotCallback screenshotCallback;
String text = "Ready..";
@override
void initState() {
super.initState();
init();
}
void init() async {
await initScreenshotCallback();
}
//It must be created after permission is granted.
Future<void> initScreenshotCallback() async {
screenshotCallback = ScreenshotCallback();
screenshotCallback.addListener(() {
setState(() {
text = "Screenshot callback Fired!";
});
});
screenshotCallback.addListener(() {
print("We can add multiple listeners ");
});
}
@override
void dispose() {
screenshotCallback.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Detect Screenshot Callback Example'),
),
body: Center(
child: Text(text,
style: TextStyle(
fontWeight: FontWeight.bold,
)),
),
),
);
}
}