ClipRect(
child: ImageFiltered(
imageFilter: ImageFilter.blur(sigmaX: 5, sigmaY: 5),
child: Container(
child: Column(
children: [
Row(
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
children: [
CustomText(
size: 14,
text: "Request Status: ",
fontWeight: FontWeight.w400,
align: TextAlign.start,
),
CustomText(
size: 14,
text: "Pending",
fontWeight: FontWeight.w600,
align: TextAlign.start,
),
],
),
Row(
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
children: [
CustomText(
size: 14,
text: "Request Seen: ",
fontWeight: FontWeight.w400,
align: TextAlign.start,
),
CustomText(
size: 14,
text: "Delivered",
fontWeight: FontWeight.w600,
align: TextAlign.start,
),
],
),
Row(
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
children: [
CustomText(
size: 14,
text: "Request Seen: ",
fontWeight: FontWeight.w400,
align: TextAlign.start,
),
CustomText(
size: 14,
text: "Delivered",
fontWeight: FontWeight.w600,
align: TextAlign.start,
),
],
),
Row(
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
children: [
CustomText(
size: 14,
text: "Request Seen: ",
fontWeight: FontWeight.w400,
align: TextAlign.start,
),
CustomText(
size: 14,
text: "Creating",
fontWeight: FontWeight.w600,
align: TextAlign.start,
),
],
),
],
),
),
),
),
Comments
Post a Comment