-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
32 lines (24 loc) · 933 Bytes
/
App.tsx
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
import { StatusBar } from 'expo-status-bar';
import React, { useRef, useState, useEffect } from 'react';
import { Text, View, TouchableOpacity } from 'react-native';
import tw from 'twrnc'
import { Camera } from 'expo-camera';
import * as FaceDetector from 'expo-face-detector';
export default function App() {
const cameraRef = useRef(null);
const [hasPermission, setHasPermission] = useState(null);
const [isDetecting, setIsDetecting] = useState(false);
const [detectedFace, setDetectedFace] = useState([]);
useEffect(() => {
(async () => {
const {status} = await Camera.requestCameraPermissionsAsync();
setHasPermission(status === 'granted');
})();
}, []);
return (
<View style={tw`flex-1 justify-center items-center bg-blue-500`}>
<Text style={tw`text-white text-lg`}>Open up App.tsx to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
}