v1.0.1
screen_capture_utils
एंड्रॉइड और आईओएस डिवाइस पर स्क्रीन कैप्चर इवेंट्स को हैंडल करने के लिए एक प्लगइन
18लाइक 1130-दिन डाउनलोड150Pub अंक
AndroidiOS
एंड्रॉइड और आईओएस पर स्क्रीन कैप्चर इवेंट्स को हैंडल करने के लिए एक प्लगइन
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A plugin to handle screen capture events on android and ios
late ScreenCaptureUtils screenCaptureUtils;
...
screenCaptureUtils = ScreenCaptureUtils(
// Path returns empty on iOS
onScreenCaptured: (_) {
print('Captured: $_');
},
/// Only on Android !!!
isGuarding: (bool val) {
print(val);
},
/// Only on Android !!!
onScreenCapturedWithDeniedPermission: () {
print('onScreenCapturedWithDeniedPermission');
},
)..intialize();
/// Guard Screen
screenCaptureUtils.guard();
/// Unguard Screen
screenCaptureUtils.unGuard();
Lots of PR's would be needed to improve this plugin. So lots of suggestions and PRs are welcome.