flutter_screenshot_callback_plus 1.0.1 copy "flutter_screenshot_callback_plus: ^1.0.1" to clipboard
flutter_screenshot_callback_plus: ^1.0.1 copied to clipboard

A Flutter plugin for detecting screenshot events on Android and iOS platforms with enhanced features and improved compatibility.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_screenshot_callback_plus/flutter_screenshot_callback_plus.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> implements IScreenshotCallback {
  String _imagePath = 'Unknown';
  late ScreenshotCallback _screenshotCallback;

  @override
  void initState() {
    super.initState();
    initCallback();
  }

  void initCallback(){
    _screenshotCallback = ScreenshotCallback();
    _screenshotCallback.startScreenshot();
    _screenshotCallback.setInterfaceScreenshotCallback(this);
  }

  @override
  void dispose() {
    // TODO: implement dispose
    super.dispose();
    _screenshotCallback.stopScreenshot();
  }


  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Image path: $_imagePath\n'),
        ),
      ),
    );
  }

  @override
  deniedPermission() {
    print("没有权限");
  }

  @override
  screenshotCallback(String data) {
    setState(() {
      _imagePath = data;
    });
  }
}
0
likes
140
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for detecting screenshot events on Android and iOS platforms with enhanced features and improved compatibility.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_screenshot_callback_plus

Packages that implement flutter_screenshot_callback_plus