| 9 | import Icon from './Icon'; |
| 10 | |
| 11 | interface CameraScreenProps { |
| 12 | onCancelButtonPress: () => void; |
| 13 | showImagePickerButton?: boolean; |
| 14 | showFilePickerButton?: boolean; |
| 15 | onImagePickerButtonPress?: () => void; |
| 16 | onFilePickerButtonPress?: () => void; |
| 17 | onReadCode?: (event: OnReadCodeData) => void; |
| 18 | } |
| 19 | |
| 20 | const CameraScreen: React.FC<CameraScreenProps> = ({ |
| 21 | onCancelButtonPress, |
nothing calls this directly
no outgoing calls
no test coverage detected