qrcoder 0.2.0 copy "qrcoder: ^0.2.0" to clipboard
qrcoder: ^0.2.0 copied to clipboard

Yet another stupid dart qrcode plugin.

qrcoder #

pub package

Yet another stupid dart qrcode plugin, modified from qrcodejs & swift_qrcodejs.

Use #

  1. Dependency

In your pubspec.yaml, add the following config:

dependencies:
   qrcoder: 0.2.0
  1. Generate

The method statement is as follows:

static Future<List<List<int>>> generateQRCodeMatrix(
	String text, {Encoding encoding = utf8, QRErrorCorrectLevel errorCorrectLevel = QRErrorCorrectLevel.H, bool hasBorder = true}
)

You can call this method liek this:

var matrix = await Qrcoder.generateQRCodeMatrix('2333', hasBorder: false);
print(matrix);

For more information, you can see the example project.

Author #

EyreFree, eyrefree@eyrefree.org

License #

This project is available under the MIT license. See the LICENSE file for more info.

2
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Yet another stupid dart qrcode plugin.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on qrcoder