Align(
alignment: (widget.maxLines ?? 1) <= 1 ? Alignment.center : Alignment.topCenter,
widthFactor: 1,
heightFactor: (widget.maxLines ?? 1) <= 1 ? 1 : 1 + ((widget.maxLines ?? 1) - 1) * 0.8333,
child: Padding(
padding: EdgeInsets.fromLTRB(10.sp, 0.sp, 10.sp, 0),
child: CustomImage(
assetImg: widget.customPreIcon!,
color: AppColors.mainColor,
height: 25.h,
),
),
)