我试图通过使用Camera
在我的react-native
应用程序中实现react-native-camera
,但是它似乎不起作用。当我运行react-native run-android
空白屏幕时出现没有任何错误。这是我的代码,
import Camera from 'react-native-camera';
<Camera
style={Styles.preview}
aspect={Camera.constants.Aspect.fill}
ref={cam => { this.camera = cam; }}
/>
const Styles = {
preview: {
flex: 1,
justifyContent: 'flex-end',
alignItems: 'center',
}
};