MCPcopy Create free account
hub / github.com/a7medev/react-native-ml-kit / App

Function App

example/src/App.tsx:20–48  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18const Stack = createNativeStackNavigator<ParamList>();
19
20const 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
50export default App;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected