|
|
|
@ -6,11 +6,11 @@ import { |
|
|
|
|
Dimensions, |
|
|
|
|
ImageBackground, |
|
|
|
|
StatusBar, |
|
|
|
|
Appearance, |
|
|
|
|
} from "react-native"; |
|
|
|
|
import { useNavigation } from "@react-navigation/native"; |
|
|
|
|
import { BarCodeScanner } from "expo-barcode-scanner"; |
|
|
|
|
import { Entypo } from "@expo/vector-icons"; |
|
|
|
|
import {connect} from "react-redux"; |
|
|
|
|
|
|
|
|
|
import tw from "tailwind-rn"; |
|
|
|
|
import Colors from "../../../constants/Colors"; |
|
|
|
@ -20,8 +20,7 @@ const { width, height } = Dimensions.get("screen"); |
|
|
|
|
//assets
|
|
|
|
|
import laptopImage from "../assets/laptop.png"; |
|
|
|
|
|
|
|
|
|
export default function Scan({}) { |
|
|
|
|
const colorScheme = Appearance.getColorScheme(); |
|
|
|
|
function Scan({}) { |
|
|
|
|
const navigation = useNavigation(); |
|
|
|
|
const [hasPermission, setHasPermission] = useState(null); |
|
|
|
|
const [scanned, setScanned] = useState(false); |
|
|
|
@ -96,4 +95,10 @@ export default function Scan({}) { |
|
|
|
|
{/* )} */} |
|
|
|
|
</ImageBackground> |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => ({ |
|
|
|
|
theme: state.publicApi.theme |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(Scan); |