taro-code-creator
v1.0.6
Published
Code for taro,Supports generating barcodes and QR codes
Maintainers
Readme
taro-code-creator
Supports generating barcodes and QR codes
Supporting platforms
weapp h5 tt swan alipay qq rn
Installing
yarn add taro-code-creatorBasic 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" />
</>
);
};
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 |
