adding bill product to receipt

This commit is contained in:
2025-12-08 14:21:28 +02:00
parent 4fcc6b9f36
commit 5f3e3c94f0

View File

@@ -906,6 +906,45 @@ class _ReceiptScreenState extends State<ReceiptScreen>
const SizedBox(
height: 10,
),
if(receiptController
.model
.receiptData?["billProductName"] != null)
Skeletonizer(
enabled:
receiptController
.model
.isLoading,
child: Row(
mainAxisAlignment:
MainAxisAlignment
.spaceBetween,
children: [
Text(
"Bill Product",
style: TextStyle(
fontSize: 16,
fontWeight:
FontWeight
.bold,
),
),
Text(
receiptController
.model
.receiptData?["billProductName"] ??
"",
style:
TextStyle(
fontSize:
16,
),
),
],
),
),
const SizedBox(
height: 10,
),
Divider(
color:
Colors.grey[300],