alexzhirkevich/custom-qr-generator-flutter

How to create a dotted QR Code

Closed this issue · 5 comments

Is it possible to create a dotted QR Code with this lib like this?
image

You can make pixels round and blue like that:

options: QrOptions(
    shapes: QrShapes(
        darkPixel: QrPixelShape.circle()
    ),
    colors: QrColors(
        dark: QrColor.solid(Colors.blue)
    )
)

QR code shape will be supported in future versions

wow. to be honest, this is the best qr code generator package for flutter. it is already much more powerful than other packages.
the only reason why it is not yet as visible as other packages is probably that it is new or using the wrong tags. ( i dont know)
if one can add icons and change the shape. this will be the final game changer.

Thanks, @asigamba.

You can add icon just by placing image on top of qr code and increasing error correction level (ecl) in options. It will work

zogol commented

the library is great. with the custom shape qr code feature all qr dreams come true.
I want to create something like this.

image

Thanks, @asigamba.

You can add icon just by placing image on top of qr code and increasing error correction level (ecl) in options. It will work

thank youuu