'Is there any way I can ask for the Accessibility permission for MacOS in flutter?
I am working on flutter where I need to ask user to go to preferences and allow accessibility permission for MaxOS. is there any way I can ask for it in flutter?
Solution 1:[1]
In Flutter you can not do it out of the box. You need to write platform channels and native code for that.
Accessibility topic is something that is limited by the Apple to prevent security issues. A lot of different approaches were out there and working but since El Capitan all of them are deprecated.
Nevertheless you still can write your own custom code with your own dialog window and make it. You can check the documentation here for the native platform and check this answer for more information
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | salihgueler |
