Skip to content

Instantly share code, notes, and snippets.

View drex44's full-sized avatar
🎯
Focusing

Dhanraj Acharya drex44

🎯
Focusing
View GitHub Profile
@IgorMing
IgorMing / barcodescanner.js
Last active October 19, 2024 20:55
Barcode Scanner on React Native (with expo), stylized with opaque edges
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { BarCodeScanner } from 'expo';
export default class App extends React.Component {
render() {
return (
<BarCodeScanner
onBarCodeRead={(scan) => alert(scan.data)}
style={[StyleSheet.absoluteFill, styles.container]}