|
|
|
|
@ -53,8 +53,6 @@ class _MowadhafhiHomeState extends State<MowadhafhiHome> {
|
|
|
|
|
},
|
|
|
|
|
child: Container(
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
// height: 100.0,
|
|
|
|
|
padding: const EdgeInsets.only(left: 12, right: 12, top: 10, bottom: 10),
|
|
|
|
|
margin: const EdgeInsets.only(left: 12, right: 12, top: 10, bottom: 10),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
@ -67,31 +65,52 @@ class _MowadhafhiHomeState extends State<MowadhafhiHome> {
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
clipBehavior: Clip.antiAlias,
|
|
|
|
|
child: Stack(
|
|
|
|
|
clipBehavior: Clip.antiAlias,
|
|
|
|
|
children: [
|
|
|
|
|
Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
getTicketsByEmployeeList[index].ticketTypeName!.toText14(color: MyColors.grey57Color),
|
|
|
|
|
getTicketsByEmployeeList[index].created!.split(" ")[0].toText12(color: MyColors.grey70Color),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
padding: const EdgeInsets.only(top: 10.0),
|
|
|
|
|
child: getTicketsByEmployeeList[index].description!.toText12(color: MyColors.grey57Color),
|
|
|
|
|
Positioned(
|
|
|
|
|
left: -20,
|
|
|
|
|
top: -10,
|
|
|
|
|
child: Transform.rotate(
|
|
|
|
|
angle: 15,
|
|
|
|
|
child: Container(
|
|
|
|
|
width: 50,
|
|
|
|
|
height: 30,
|
|
|
|
|
color: Colors.amber,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
padding: const EdgeInsets.only(top: 10.0),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
padding: const EdgeInsets.only(left: 15, right: 15, top: 20, bottom: 10),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
getTicketsByEmployeeList[index].ticketStatusInternalName!.toText14(color: MyColors.gradiantEndColor),
|
|
|
|
|
SvgPicture.asset(
|
|
|
|
|
"assets/images/arrow_next.svg",
|
|
|
|
|
color: MyColors.darkIconColor,
|
|
|
|
|
)
|
|
|
|
|
Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
getTicketsByEmployeeList[index].ticketTypeName!.toText14(color: MyColors.grey57Color),
|
|
|
|
|
getTicketsByEmployeeList[index].created!.split(" ")[0].toText12(color: MyColors.grey70Color),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
padding: const EdgeInsets.only(top: 10.0),
|
|
|
|
|
child: getTicketsByEmployeeList[index].description!.toText12(color: MyColors.grey57Color),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
padding: const EdgeInsets.only(top: 10.0),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
getTicketsByEmployeeList[index].ticketStatusInternalName!.toText14(color: MyColors.gradiantEndColor),
|
|
|
|
|
SvgPicture.asset(
|
|
|
|
|
"assets/images/arrow_next.svg",
|
|
|
|
|
color: MyColors.darkIconColor,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|