From b738596b504a1c2d69a71e2089b4989d5161ca67 Mon Sep 17 00:00:00 2001 From: Rafeek-Khoudare Date: Mon, 21 Jul 2025 09:14:59 +0300 Subject: [PATCH] no need for colors instead use ColorsManager --- .../create_new_routines/dropdown_menu_content.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/pages/routines/create_new_routines/dropdown_menu_content.dart b/lib/pages/routines/create_new_routines/dropdown_menu_content.dart index 67c19600..4b2206ba 100644 --- a/lib/pages/routines/create_new_routines/dropdown_menu_content.dart +++ b/lib/pages/routines/create_new_routines/dropdown_menu_content.dart @@ -76,7 +76,8 @@ class _DropdownMenuContentState extends State { child: TextFormField( controller: _searchController, onChanged: _handleSearch, - style: const TextStyle(fontSize: 14, color: Colors.black), + style: const TextStyle( + fontSize: 14, color: ColorsManager.blackColor), decoration: InputDecoration( hintText: 'Search for space...', prefixIcon: const Icon(Icons.search, size: 20), @@ -124,7 +125,9 @@ class _DropdownMenuContentState extends State { title: Text( community.name, style: TextStyle( - color: isSelected ? Colors.blue : Colors.black, + color: isSelected + ? ColorsManager.dropDownSelectBlue + : ColorsManager.blackColor, fontWeight: isSelected ? FontWeight.bold : FontWeight.normal, ),