Skip to content

cssivision/react-native-qrcode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-qrcode

A react-native component to generate QRcode, not only support English.

this module support iOS and Android

Installation

npm install react-native-qrcode

Usage

'use strict'; var React = require('react'); var QRCode = require('react-native-qrcode'); var { AppRegistry, StyleSheet, View, TextInput } = require('react-native'); var helloworld = React.createClass({ getInitialState: function() { return { text: 'http://facebook.github.io/react-native/', }; }, render: function() { return ( <View style={styles.container}> <TextInput style={styles.input} onChangeText={(text) => this.setState({text: text})} value={this.state.text} /> <QRCode value={this.state.text} size={200} bgColor='purple' fgColor='white'/> </View> ); } }); var styles = StyleSheet.create({ container: { flex: 1, backgroundColor: 'white', alignItems: 'center', justifyContent: 'center' }, input: { height: 40, borderColor: 'gray', borderWidth: 1, margin: 10, borderRadius: 5, padding: 5, } }); AppRegistry.registerComponent('helloworld', () => helloworld); module.exports = helloworld;

Available Props

prop type default value
value string http://facebook.github.io/react-native/
size number 128
bgColor string (CSS color) "#FFFFFF"
fgColor string (CSS color) "#000000"

About

a minimalist qrcode component for react-native

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 10