Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wukongyang/taro-code-creator
Code for taro,Supports generating barcodes and QR codes
https://github.com/wukongyang/taro-code-creator
Last synced: about 1 month ago
JSON representation
Code for taro,Supports generating barcodes and QR codes
- Host: GitHub
- URL: https://github.com/wukongyang/taro-code-creator
- Owner: wukongyang
- License: mit
- Created: 2023-12-14T13:38:32.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-08-07T09:49:53.000Z (4 months ago)
- Last Synced: 2024-10-17T13:32:50.320Z (about 2 months ago)
- Language: JavaScript
- Size: 471 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-taro - taro-code-creator Taro 条形码、二维码生成器,全平台支持
README
# 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
```tsx
import CodeCreator from "taro-code-creator";const App = () => {
return (
<>
>
);
};
```
![img](./example.png)## Component API
> Based on [taro-code-creator](https://github.com/wukongyang/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 |