Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.7 KB

README.md

File metadata and controls

52 lines (41 loc) · 1.7 KB

taro-code-creator

Supports generating barcodes and QR codes

Supporting platforms

weapp h5 tt swan alipay qq rn

Installing

yarn add taro-code-creator

Basic Usage

import CodeCreator from "taro-code-creator";

const App = () => {
  return (
    <>
      <CodeCreator
        codeText="test"
        size={420}
        logo={defaultHeadSculpture}
        logoSize={88}
      />
      <CodeCreator type="bar" width={400} height={100} codeText="test" />
    </>
  );
};

img

Component API

Based on taro-code-creator

Prop Description Default type
type code type qr all
codeText QR code content all
color QR code color #000 all
backgroundColor QR code background color #fff all
size QR code size 200 qr
logo logo url `` qr
logoSize Logo size 60 qr
callback Callback function for generating QR codes all
width barcode width bar
height barcode height bar
format barcode format bar