adding bill product to receipt
This commit is contained in:
@@ -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],
|
||||
|
||||
Reference in New Issue
Block a user