react-native-fast-qrcode-generator
v0.2.0
Published
Support for QRCode
Readme
react-native-fast-generate-qrcode
Support for QRCode
Installation
npm install react-native-fast-generate-qrcodeUsage
import { StyleSheet, View } from 'react-native';
import { FastQRCodeGenerator } from 'react-native-fast-generate-qrcode';
export default function App() {
return (
<View style={styles.container}>
<FastQRCodeGenerator value="QrCodeValue" correctionLevel="M" style={styles.box} />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
box: {
width: 300,
height: 300,
},
});
License
MIT
