Skip to content

EyreFree/qrcoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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, [email protected]

License

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