Skip to content

Latest commit

History

88 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

THIS PROJECT IS NO LONGER MAINTAINED

react-native-qrcode

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

Installation

npm install react-native-qrcode --save

Usage

'use strict';importReact,{Component}from'react'importQRCodefrom'react-native-qrcode';import{AppRegistry,StyleSheet,View,TextInput}from'react-native';classHelloWorldextendsComponent{state={text: 'http://facebook.github.io/react-native/',};render(){return(<Viewstyle={styles.container}><TextInputstyle={styles.input}onChangeText={(text)=>this.setState({text: text})}value={this.state.text}/><QRCodevalue={this.state.text}size={200}bgColor='purple'fgColor='white'/></View>);};}conststyles=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

proptypedefault value
valuestringhttp://facebook.github.io/react-native/
sizenumber128
bgColorstring (CSS color)"#000"
fgColorstring (CSS color)"#FFF"

Licenses

All source code is licensed under the MIT License.

About

a minimalist qrcode component for react-native

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages