flag_secure 1.0.2
flag_secure: ^1.0.2 copied to clipboard
A Flutter plugin to manage Android's FLAG_SECURE at runtime.
flag_secure #
A Flutter plugin to manage Android's FLAG_SECURE at runtime.
Installing #
See the installing instructions.
Usage #
-
Get whether
FLAG_SECUREis 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.