commit before push

feature/passo/PASSO-#1-Sync-data-from-device-to-postgre-and-vice-versa
PGAN-MIS 2023-10-09 09:54:36 +08:00
parent b1ea70b9ab
commit fe88c5d656
2 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ class BuildInformation extends StatelessWidget {
return QRFullScreenImage(uuid: uuid);
}));
},
child: QrImage(
child: QrImageView(
data: uuid!,
size: blockSizeVertical * 24,
),

View File

@ -16,7 +16,7 @@ class QRFullScreenImage extends StatelessWidget {
title: const Text("Profile QR Code"),
),
body: Center(
child: QrImage(data: uuid, size: blockSizeVertical * 50),
child: QrImageView(data: uuid, size: blockSizeVertical * 50),
),
);
}