pretty_qr_code
A creative QR code design brings the best experience for users. Therefore, it is easy and convenient to generate a pretty QR code for users. You can round the edges with parameters or use the standard view. Follow the next steps to find more information.

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)),
),
);
}
}
GitHub
https://github.com/promops/flutter_pretty_qr