-
Notifications
You must be signed in to change notification settings - Fork 5
/
App.js
46 lines (41 loc) · 1.27 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
import { useState, useEffect } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import Auth from './src/screens/AuthScreen';
import PaymentScreen from './src/screens/PaymentScreen';
import * as LocalAuthentication from 'expo-local-authentication';
export default function App() {
const [isBiometricSupported, setIsBiometricSupported] = useState(false);
const [isAuthenticated, setIsAuthenticated] = useState(false);
// Check if hardware supports biometrics
useEffect(() => {
(async () => {
const compatible = await LocalAuthentication.hasHardwareAsync();
setIsBiometricSupported(compatible);
})();
});
function onAuthenticate () {
const auth = LocalAuthentication.authenticateAsync({
promptMessage: 'Authenticate',
fallbackLabel: 'Enter Password',
});
auth.then(result => {
setIsAuthenticated(result.success);
console.log(result);
}
);
}
return (
<View style={styles.container}>
{ isAuthenticated
? <PaymentScreen setIsAuthenticated={setIsAuthenticated} />
: <Auth onAuthenticate={onAuthenticate} />
}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
});