pretty_qr_code 0.0.6 copy "pretty_qr_code: ^0.0.6" to clipboard
pretty_qr_code: ^0.0.6 copied to clipboard

outdated

Pretty QR code for Flutter. You can round the edges with parameter or use the standard view.

pretty_qr_code #

Pretty QR code for Flutter. You can round the edges with parameter or use the standard view.

Features #

Screenshots #

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

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.

287
likes
0
pub points
98%
popularity

Publisher

unverified uploader

Pretty QR code for Flutter. You can round the edges with parameter or use the standard view.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, qr

More

Packages that depend on pretty_qr_code