generate gif for custom code with gif background image

// display custom code in widget tree

Features

Getting started

Usage


// use custom qr in widget tree
Container(
    decoration: const BoxDecoration(
        image:
            DecorationImage(image: AssetImage("your asset image"))),
    child: CustomPaint(
    size: const Size(200, 200),
    painter: FunQrPainter(
        data: "data",
        options: FunQr.defaultOptions,
    )),
)


// use the temp gif path to save gallery or do other things
String gifPath = await FunQr().generatePath(
              data: "qr content", gifUrl: "https://yourgif.gif");

          

Libraries

fun_qr_generator