pretty qr code
pretty qr code for flutter. you can round the edges with parameter or use the standard view.
features
created with qr dart
example
import 'package:flutter/material.dart';
import 'package:pretty_qr_code/pretty_qr_code.dart';
import 'package:qr/qr.dart';
void main() => runapp(myapp());
class myapp extends statelesswidget {
@override
widget build(buildcontext context) {
return materialapp(
home: scaffold(
body: center(
child: prettyqr(
size: 200,
data: '12423577',
errorcorrectlevel: qrerrorcorrectlevel.m,
roundedges: true)),
),
);
}
}
Comments are closed.