-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathApp.js
116 lines (102 loc) · 3.18 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import { StatusBar } from 'expo-status-bar';
import React, { useState, useEffect } from 'react';
import {
StyleSheet,
Text,
View,
SafeAreaView,
Button,
TouchableHighlight,
Alert,
StatusBar as RnStatusBar,
} from 'react-native';
import * as LocalAuthentication from 'expo-local-authentication';
export default function App() {
const [isBiometricSupported, setIsBiometricSupported] = useState(false);
// Check if hardware supports biometrics
useEffect(() => {
(async () => {
const compatible = await LocalAuthentication.hasHardwareAsync();
setIsBiometricSupported(compatible);
})();
});
const fallBackToDefaultAuth = () => {
console.log('fall back to password authentication');
};
const alertComponent = (title, mess, btnTxt, btnFunc) => {
return Alert.alert(title, mess, [
{
text: btnTxt,
onPress: btnFunc,
},
]);
};
const handleBiometricAuth = async () => {
// Check if hardware supports biometrics
const isBiometricAvailable = await LocalAuthentication.hasHardwareAsync();
// Fallback to default authentication method (password) if Fingerprint is not available
if (!isBiometricAvailable)
return alertComponent(
'Please enter your password',
'Biometric Authentication not supported',
'OK',
() => fallBackToDefaultAuth()
);
// Check Biometrics types available (Fingerprint, Facial recognition, Iris recognition)
let supportedBiometrics;
if (isBiometricAvailable)
supportedBiometrics = await LocalAuthentication.supportedAuthenticationTypesAsync();
// Check Biometrics are saved locally in user's device
const savedBiometrics = await LocalAuthentication.isEnrolledAsync();
if (!savedBiometrics)
return alertComponent(
'Biometric record not found',
'Please login with your password',
'OK',
() => fallBackToDefaultAuth()
);
// Authenticate use with Biometrics (Fingerprint, Facial recognition, Iris recognition)
const biometricAuth = await LocalAuthentication.authenticateAsync({
promptMessage: 'Login with Biometrics',
cancelLabel: 'Cancel',
disableDeviceFallback: true,
});
// Log the user in on success
if (biometricAuth) console.log('success');
console.log({ isBiometricAvailable });
console.log({ supportedBiometrics });
console.log({ savedBiometrics });
console.log({ biometricAuth });
};
return (
<SafeAreaView>
<View style={styles.container}>
<Text>
{isBiometricSupported
? 'Your device is compatible with Biometrics'
: 'Face or Fingerprint scanner is available on this device'}
</Text>
<TouchableHighlight
style={{
height: 60,
}}
>
<Button
title="Login with Biometrics"
color="#fe7005"
onPress={handleBiometricAuth}
/>
</TouchableHighlight>
<StatusBar style="auto" />
</View>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
paddingTop: RnStatusBar.currentHeight,
flex: 1,
paddingLeft: 20,
paddingRight: 20,
},
});