fun_qr_generator 0.0.1
fun_qr_generator: ^0.0.1 copied to clipboard
To generate custom qr image with gif background.
generate gif image path for custom code with gif background add custom code in widget tree
Features #
[] []
Getting started #
Usage #
const like = 'sample';
// 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().generatePathWithGif(
data: "qr content", gifUrl: "https://yourgif.gif");