flag_secure
A Flutter plugin to manage Android's FLAG_SECURE at runtime.
Installing
See the installing instructions.
Usage
-
Get whether
FLAG_SECURE
is set:try { final bool? enabled = await FlagSecure.isFlagSecureEnabled; } on PlatformException { // Handle exception }
-
Enable
FLAG_SECURE
:try { await FlagSecure.enableFlagSecure(); } on PlatformException { // Handle exception }
-
Disable
FLAG_SECURE
:try { await FlagSecure.disableFlagSecure(); } on PlatformException { // Handle exception }
Example
See the example app.