Last updated:
0 purchases
pretty qr code plus
pretty_qr_code_plus #
Pretty QR code for Flutter. You can round the edges with parameter or use the standard view.
Features #
Created with QR dart
Screenshots #
<img src=""https://github.com/odejinmi/flutter_pretty_qr_plus/master/images/Scr3.png" width="250">
Example #
import 'package:flutter/material.dart';
import 'package:pretty_qr_code_plus/pretty_qr_code.dart_plus';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: PrettyQrPlus(
image: AssetImage('images/twitter.png'),
typeNumber: 3,
size: 200,
data: 'https://www.google.ru',
errorCorrectLevel: QrErrorCorrectLevel.M,
roundEdges: true,
),
),
),
);
}
}
copied to clipboard
typeNumber is null by default. It means that it will be automatically chosen based on data length
Getting Started #
This project is a starting point for a Dart
package,
a library module containing code that can be shared easily across
multiple Flutter or Dart projects.
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.