|
|
|
@ -66,7 +66,10 @@ class CustomerBriefCard extends StatelessWidget {
|
|
|
|
flex: 3,
|
|
|
|
flex: 3,
|
|
|
|
child: Text(
|
|
|
|
child: Text(
|
|
|
|
'ID: ${itemId}',
|
|
|
|
'ID: ${itemId}',
|
|
|
|
style: TextStyle(color: Color(0xFFADACAD)),
|
|
|
|
style: TextStyle(
|
|
|
|
|
|
|
|
color: Color(0xFFADACAD),
|
|
|
|
|
|
|
|
fontWeight: FontWeight.w800,
|
|
|
|
|
|
|
|
fontSize: 17.5),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
Expanded(
|
|
|
|
@ -91,7 +94,7 @@ class CustomerBriefCard extends StatelessWidget {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
Text(
|
|
|
|
'${customerFirstName} ${customerLastName}',
|
|
|
|
'${customerFirstName} ${customerLastName}',
|
|
|
|
style: TextStyle(fontSize: 20, fontWeight: FontWeight.w900),
|
|
|
|
style: TextStyle(fontSize: 20, fontWeight: FontWeight.w500),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SizedBox(
|
|
|
|
SizedBox(
|
|
|
|
height: MediaQuery.of(context).size.width * 0.019,
|
|
|
|
height: MediaQuery.of(context).size.width * 0.019,
|
|
|
|
@ -142,7 +145,7 @@ class CustomerBriefCard extends StatelessWidget {
|
|
|
|
child: Text(
|
|
|
|
child: Text(
|
|
|
|
totalPayment.toString(),
|
|
|
|
totalPayment.toString(),
|
|
|
|
textAlign: TextAlign.end,
|
|
|
|
textAlign: TextAlign.end,
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w600),
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w400),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
@ -163,7 +166,7 @@ class CustomerBriefCard extends StatelessWidget {
|
|
|
|
child: Text(
|
|
|
|
child: Text(
|
|
|
|
'${DateUtil.getMonthDayYearDateFormatted(DateUtil.convertStringToDate(deliveryTime))} ${(DateUtil.convertStringToHours(deliveryTime))}',
|
|
|
|
'${DateUtil.getMonthDayYearDateFormatted(DateUtil.convertStringToDate(deliveryTime))} ${(DateUtil.convertStringToHours(deliveryTime))}',
|
|
|
|
textAlign: TextAlign.end,
|
|
|
|
textAlign: TextAlign.end,
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w600)),
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w400)),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|