qrcode_component 1.0.0 copy "qrcode_component: ^1.0.0" to clipboard
qrcode_component: ^1.0.0 copied to clipboard

retracted

QRCodeComponent is a Flutter widget that enables easy generation of QR codes within Flutter applications. It offers customizable options for QR code appearance, including colors, error correction leve [...]

example/main.dart

import 'package:flutter/material.dart';
import 'package:qrcode_component/qr_code.dart'; // Replace 'your_package_name' with the actual name of your package

class MyQRScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('QR Code Example'),
      ),
      body: Center(
        child: QRCodeComponent(
          qrdata: 'Your QR Code Data Here', // Provide the data for the QR code
          qrCodeURL: (SafeUrl url) {
            // Handle the generated QR code URL here
            print('QR Code URL: $url');
          },
          // You can customize other properties here as needed
        ),
      ),
    );
  }
}
4
likes
0
points
287
downloads

Publisher

verified publishergametech-horizon.com

Weekly Downloads

QRCodeComponent is a Flutter widget that enables easy generation of QR codes within Flutter applications. It offers customizable options for QR code appearance, including colors, error correction levels, and overlay images. The widget supports rendering QR codes as canvas, SVG, or image elements and provides accessibility features such as alternate text and ARIA labels.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, qr

More

Packages that depend on qrcode_component