flx_id_overlay 0.2.0 copy "flx_id_overlay: ^0.2.0" to clipboard
flx_id_overlay: ^0.2.0 copied to clipboard

discontinued

A overlay dialog for auth in ID

flx_id_overlay #

A overlay dialog for auth in ID

Example #

var result = await AuthTheatre.show(
    context: context,
    appId: "",
    appSecret: "",
    permissions: [
        AuthPermission.readNames,
    ],
);

if (result != null) {
    Id.auth(result);
    print("sign in");
} else {
    print("cant sign in");
}