How to disable screenshot for a flutter App? I have tried and succeeded in android. for android :
Future<void> secureScreen() async {
await FlutterWindowManager.addFlags(FlutterWindowManager.FLAG_SECURE);
}
just called securescreen() method (defined above) inside my main() function in main.dart file.
How can i implement in Ios?