美文网首页
react-native组件(6)--(react-native

react-native组件(6)--(react-native

作者: 吃肉666 | 来源:发表于2017-08-17 10:58 被阅读218次
字符串生成二维码组件
安装

npm install react-native-qrcode --save

使用
'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;
参数
prop type default value
value string 我是要变二维码的字符串
size number 128
bgColor string (CSS color) "#000"
fgColor string (CSS color) "#FFF"

相关文章

网友评论

      本文标题:react-native组件(6)--(react-native

      本文链接:https://www.haomeiwen.com/subject/eddirxtx.html