🔨 updated tenders screen ui
This commit is contained in:
@@ -32,6 +32,9 @@ class TenderActionButtons extends StatelessWidget {
|
||||
GestureDetector(
|
||||
onTap: onDislike,
|
||||
child: SvgPicture.asset(
|
||||
width: 32.0.w(),
|
||||
height: 32.0.w(),
|
||||
fit: BoxFit.cover,
|
||||
AssetsManager.dislike,
|
||||
colorFilter: ColorFilter.mode(
|
||||
isDisliked ? AppColors.errorColor : AppColors.grey50,
|
||||
@@ -40,18 +43,14 @@ class TenderActionButtons extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
|
||||
SizedBox(width: 16.0.w()),
|
||||
|
||||
// Close button
|
||||
GestureDetector(
|
||||
onTap: onClose,
|
||||
child: SvgPicture.asset(AssetsManager.closeCircle),
|
||||
),
|
||||
SizedBox(width: 16.0.w()),
|
||||
SizedBox(width: 48.0.w()),
|
||||
// Like button
|
||||
GestureDetector(
|
||||
onTap: onLike,
|
||||
child: SvgPicture.asset(
|
||||
width: 32.0.w(),
|
||||
height: 32.0.w(),
|
||||
fit: BoxFit.cover,
|
||||
AssetsManager.like,
|
||||
colorFilter: ColorFilter.mode(
|
||||
isLiked ? AppColors.successColor : AppColors.grey50,
|
||||
|
||||
Reference in New Issue
Block a user