update icon

This commit is contained in:
Phuoc Nguyen
2025-11-17 09:34:17 +07:00
parent b5f90c364d
commit 49082026f5
12 changed files with 144 additions and 135 deletions

View File

@@ -5,6 +5,7 @@
library;
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:worker/core/constants/ui_constants.dart';
import 'package:worker/core/theme/colors.dart';
@@ -74,9 +75,9 @@ class AccountMenuItem extends StatelessWidget {
AppColors.lightBlue.withValues(alpha: 0.1),
shape: BoxShape.circle,
),
child: Icon(
child: FaIcon(
icon,
size: 20,
size: 18,
color: iconColor ?? AppColors.primaryBlue,
),
),
@@ -111,9 +112,9 @@ class AccountMenuItem extends StatelessWidget {
// Trailing widget (default: chevron)
trailing ??
const Icon(
Icons.chevron_right,
size: 20,
const FaIcon(
FontAwesomeIcons.chevronRight,
size: 18,
color: AppColors.grey500,
),
],