From 448e798da131fb876739d46232f822387b1f97aa Mon Sep 17 00:00:00 2001 From: hannathkadher Date: Wed, 27 Nov 2024 20:26:26 +0400 Subject: [PATCH] change colors to colorsmanager --- lib/common/custom_expansion_tile.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/common/custom_expansion_tile.dart b/lib/common/custom_expansion_tile.dart index 364ccdce..8df9b663 100644 --- a/lib/common/custom_expansion_tile.dart +++ b/lib/common/custom_expansion_tile.dart @@ -85,7 +85,7 @@ class CustomExpansionTileState extends State { }, child: Icon( _isExpanded ? Icons.keyboard_arrow_down : Icons.keyboard_arrow_right, - color: Colors.grey, + color: ColorsManager.lightGrayColor, size: 16.0, // Adjusted size for better alignment ), ), @@ -101,7 +101,7 @@ class CustomExpansionTileState extends State { _capitalizeFirstLetter(widget.title), style: TextStyle( color: widget.isSelected - ? Colors.black // Change color to black when selected + ? ColorsManager.blackColor // Change color to black when selected : ColorsManager.lightGrayColor, // Gray when not selected fontWeight: FontWeight.w400, ),