import React, {Component} from 'react'; import {StyleSheet, ScrollView, SafeAreaView, Button, View} from 'react-native'; import QRCodeScanner from 'react-native-qrcode-scanner'; import {RNCamera} from 'react-native-camera'; class ScanScreen extends Component { constructor(props) { super(props); this.state = { checkPermission: true, }; } onSuccess = e => { this.props.getQRCodeResult(e.data); this.props.handler(false); }; render() { return this.props.isShowScaner ? (