Skip to content

Commit

Permalink
Allow strong type biometrics
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedward committed Sep 4, 2023
1 parent 63a60ff commit cbffd18
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/util/biometrics.dart
Expand Up @@ -25,6 +25,8 @@ class BiometricUtil {
return true;
} else if (availableBiometrics.contains(BiometricType.fingerprint)) {
return true;
} else if (availableBiometrics.contains(BiometricType.strong)) {
return true;
}
}
return false;
Expand Down

0 comments on commit cbffd18

Please sign in to comment.