adding bill product to receipt
This commit is contained in:
@@ -906,6 +906,45 @@ class _ReceiptScreenState extends State<ReceiptScreen>
|
|||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 10,
|
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(
|
Divider(
|
||||||
color:
|
color:
|
||||||
Colors.grey[300],
|
Colors.grey[300],
|
||||||
|
|||||||
Reference in New Issue
Block a user