()
| 18 | const Stack = createNativeStackNavigator<ParamList>(); |
| 19 | |
| 20 | const App: React.FC = () => { |
| 21 | return ( |
| 22 | <NavigationContainer> |
| 23 | <Stack.Navigator> |
| 24 | <Stack.Screen name="Home" component={HomeScreen} /> |
| 25 | <Stack.Screen |
| 26 | name="TextRecognition" |
| 27 | component={TextRecognitionScreen} |
| 28 | options={{title: 'Text Recognition'}} |
| 29 | /> |
| 30 | <Stack.Screen |
| 31 | name="BarcodeScanning" |
| 32 | component={BarcodeScanningScreen} |
| 33 | options={{title: 'Barcode Scanning'}} |
| 34 | /> |
| 35 | <Stack.Screen |
| 36 | name="FaceDetection" |
| 37 | component={FaceDetectionScreen} |
| 38 | options={{title: 'Face Detection'}} |
| 39 | /> |
| 40 | <Stack.Screen |
| 41 | name="ImageLabeling" |
| 42 | component={ImageLabelingScreen} |
| 43 | options={{title: 'Image Labeling'}} |
| 44 | /> |
| 45 | </Stack.Navigator> |
| 46 | </NavigationContainer> |
| 47 | ); |
| 48 | }; |
| 49 | |
| 50 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected