如何关闭选项卡上的相机或查看更改
How to turn off the camera on tab or view change
更改时相机不关闭Tab/View
render() {
const { hasCameraPermission } = this.state;
if (hasCameraPermission === null) {
return <View><Button
onPress={() => this.showCamera()}
title="Show Camera"
/>
</View>;
} else if (hasCameraPermission === false) {
return <Text>No access to camera</Text>;
} else {
return (
<View>
<Camera>
</Camera>
</View>
);
}
}
在视图中我有可以显示相机的按钮。但是有一次,相机如果打开。当我更改选项卡(选项卡导航)并返回视图时,我没有按钮,而是黑屏。好像相机没关
谢谢
创建用于显示相机的特定组件。
更改时相机不关闭Tab/View
render() {
const { hasCameraPermission } = this.state;
if (hasCameraPermission === null) {
return <View><Button
onPress={() => this.showCamera()}
title="Show Camera"
/>
</View>;
} else if (hasCameraPermission === false) {
return <Text>No access to camera</Text>;
} else {
return (
<View>
<Camera>
</Camera>
</View>
);
}
}
在视图中我有可以显示相机的按钮。但是有一次,相机如果打开。当我更改选项卡(选项卡导航)并返回视图时,我没有按钮,而是黑屏。好像相机没关
谢谢
创建用于显示相机的特定组件。