Hi Guys,
I am trying to create a QR/Bar code(bulk QR/bar code) Generator app in which users are allowed to give the quantity(also some name printed below the bar code) they want to generate and save the generated code as a PDF. What is the best way to generate bulk QR/Bar codes in flutter?
With the below code I am able to generate one QR/Bar code
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SfBarcodeGenerator(
barColor: Colors.white,
value: controller.text,
//symbology: QRCode(),
showValue: true,
textSpacing: 15,
textStyle: TextStyle(fontSize: 20,color: Colors.red),
),
SizedBox(height: 40),
Row(
children: [
Expanded(child: buildTextField(context)),
const SizedBox(width: 12),
FloatingActionButton(
backgroundColor: Theme.of(context).primaryColor,
child: Icon(Icons.done, size: 30),
onPressed: () {
print("I am from on Pressed");
Expanded(child: resultTextField(context,controller.text));
}
)
],
),
],
),
Any help is really appreciated.
Thanks in advance