'React Native Expo camera uses wide angle

I am using the Expo camera in my React Native application for my web application.

Whenever I open the web application from any browser from my mobile device (Samsung Galaxy S10), it uses a wide-angle camera.

I'd like the webapp to use the "normal" back camera. Is there a way to define this?

<Camera 
 ref={cameraRef}
 style={styles.camera}
 focusDepth='1'
 ratio='4:3'
>


Solution 1:[1]

It looks like Expo Camera doesn't support selecting which lens to use. An alternative is to use is react-native-vision-camera

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 TomS