Friday 6 September 2019

Pretty QR code with round edges



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)),
      ),
    );
  }
}
Dart

GitHub

Pretty QR code with round edges. — Read More
Latest commit to the master branch on 9-5-2019
Download as zip