项目作者: Miaonster

项目描述 :
Taro Barcode & QRCode
高级语言: TypeScript
项目地址: git://github.com/Miaonster/taro-code.git
创建时间: 2019-06-05T09:11:18Z
项目社区:https://github.com/Miaonster/taro-code

开源协议:

下载


Taro Code

QRCode & Barcode component for Taro 3.x, inspired by wx-base64-qrcode and wxbarcode. Components will generate base64 qrcode/barcode image.

Taro 2.x documentation

Getting Started

Install

  1. yarn add taro-code
  2. # or
  3. npm install taro-code

Usage

  1. import Taro from '@tarojs/taro'
  2. import { Barcode, QRCode } from 'taro-code'
  3. class Code extends Taro.Component {
  4. render() {
  5. return (
  6. <View>
  7. <Barcode text='hello' width={300} height={60} scale={4} ></Barcode>
  8. <QRCode
  9. text='world'
  10. size={300}
  11. scale={4}
  12. errorCorrectLevel='M'
  13. typeNumber={2}
  14. ></QRCode>
  15. </View>
  16. )
  17. }
  18. }

Components

Barcode

Prop Type Default
text string ''
width number 300
height number 80
scale number 4
style object {}
className string
foregroundColor string #000000
backgroundColor string #FFFFFF

QRCode

Prop Type Default
text string ''
size number 300
scale number 4
typeNumber number 2
errorCorrectLevel `’L’ \ ‘M’ \ ‘Q’ \ ‘H’` 'M'
style object {}
className string
foregroundColor string #000000
backgroundColor string #FFFFFF

ImageProps

除了上述的属性外,还支持 ImageProps 的所有属性, 例如 showMenuByLongpress 等。

Screenshot

screenshot