feat: Enhance container management UI with new management components and improved QR code generation flow

This commit is contained in:
ElPoyo
2025-10-30 20:06:13 +01:00
parent 6abb8f1d14
commit e59e3e6316
11 changed files with 815 additions and 485 deletions

View File

@@ -21,17 +21,17 @@ class PDFGeneratorConfig {
static const small = PDFGeneratorConfig(
qrCodeSize: 150,
itemsPerPage: 20,
itemsPerPage: 50,
);
static const medium = PDFGeneratorConfig(
qrCodeSize: 250,
itemsPerPage: 6,
itemsPerPage: 20,
);
static const large = PDFGeneratorConfig(
qrCodeSize: 300,
itemsPerPage: 10,
itemsPerPage: 12,
);
static PDFGeneratorConfig fromFormat(QRLabelFormat format) {