| 21 | import {launchScanner} from '@dariyd/react-native-document-scanner'; |
| 22 | |
| 23 | interface ScannedImage { |
| 24 | uri: string; |
| 25 | fileName: string; |
| 26 | fileSize: number; |
| 27 | width: number; |
| 28 | height: number; |
| 29 | } |
| 30 | |
| 31 | function App() { |
| 32 | const isDarkMode = useColorScheme() === 'dark'; |
nothing calls this directly
no outgoing calls
no test coverage detected