I'm currently working on a project on flutter and I want to disable the user form taking screenshot on the app. I made use of flutter_windowmanager
package and it worked on android but not on ios, is there a way around the ios part?
Asked
Active
Viewed 2,366 times
0

mxmissile
- 11,464
- 3
- 53
- 79

segun code
- 103
- 10
-
Here is an answer: https://stackoverflow.com/a/70542897/4899849 – Volodymyr Apr 20 '22 at 14:42
1 Answers
-1
You can use this package secure_application
For IOS
The documentation of package says
Contrary to Android we create a native frosted view over your app content so that content is not visible in the app switcher. When the user gets back to the app we wait for ~500ms to remove this view to allow time for the app to woke and flutter gate to draw
Basically it hides the content on screen by making it Blurr !

Hitesh Garg
- 251
- 1
- 9
-
4This answer does not in any way answer the question, this package secures the app by blurring when the app is in the background or in the app switcher. It does not prevent screenshots or screen recording. – RobbB Dec 22 '21 at 02:11