react-native-qrcode

a minimalist qrcode component for react-native

Github星跟踪图

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';

import React, { Component } from 'react'
import QRCode from 'react-native-qrcode';

import {
    AppRegistry,
    StyleSheet,
    View,
    TextInput
} from 'react-native';

class HelloWorld extends Component {
  state = {
    text: 'http://facebook.github.io/react-native/',
  };

  render() {
    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>
    );
  };
}

const 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), "#000"
fgColor, string (CSS color), "#FFF"

Licenses

All source code is licensed under the MIT License.

主要指标

概览
名称与所有者cssivision/react-native-qrcode
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2015-11-20 15:38:47
推送于2022-01-24 01:33:55
最后一次提交2018-12-19 10:42:46
发布数9
最新版本名称v0.2.3 (发布于 2016-11-12 23:35:40)
第一版名称v0.0.12 (发布于 2015-12-26 11:43:25)
用户参与
星数854
关注者数9
派生数303
提交数82
已启用问题?
问题数63
打开的问题数35
拉请求数12
打开的拉请求数15
关闭的拉请求数9
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?