artistic-qr-code
v1.0.0
Published
artistic-qr-code is a lightweight and easy-to-use QR code generator and scanner designed specifically for React Native projects. This module allows developers to generate QR codes dynamically and scan QR codes using the device camera, all within an Expo e
Downloads
8
Maintainers
Readme
Artistic QR Code
"artistic-qr-code" is a lightweight and easy-to-use QR code generator and scanner designed specifically for RN projects. This module allows developers to generate QR codes dynamically and scan QR codes using the device camera, all within an Expo environment.
Features
✅ Generate QR codes from text or URLs with full Artistic style
✅ Scan QR codes using the device camera
✅ Fully compatible with Expo (No need to eject)
✅ Customizable QR code styles (size, colors, version, errorCorrectionLevel)
✅ Lightweight and optimized for performance
Dependency
react-native-svg
Installation
npm install artistic-qr-codeUsage
import { QRCode } from "artistic-qr-code";
<View>
<QRCode
value="Hello world"
size={230}
color="#663399"
version={3}
errorCorrectionLevel="L"
/>
</View>