Socket
Book a DemoInstallSign in
Socket

react-native-qrcode2

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-qrcode2

react-native qrocode generator

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

This project is forked from cssivision/react-native-qrcode

react-native-qrcode2

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

Installation

npm install react-native-qrcode2 --save

Usage

'use strict';

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

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

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

changelog

  • 0.3.0
    • Use react-native-webview instead react-native's WebView

Licenses

All source code is licensed under the MIT License.

Keywords

react-native

FAQs

Package last updated on 28 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts