added color

This commit is contained in:
hannathkadher
2025-01-16 02:15:24 +04:00
parent 8a95f93556
commit 9706c2655c
2 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,6 @@ class AssignTagModelsDialog extends StatelessWidget {
List<String> getAvailableTags( List<String> getAvailableTags(
List<String> allTags, List<TagModel> currentTags, TagModel currentTag) { List<String> allTags, List<TagModel> currentTags, TagModel currentTag) {
print("happening");
return allTags return allTags
.where((tagValue) => !currentTags .where((tagValue) => !currentTags
.where((e) => e != currentTag) // Exclude the current row .where((e) => e != currentTag) // Exclude the current row

View File

@ -68,6 +68,7 @@ abstract class ColorsManager {
static const Color disabledRedText = Color(0xFF890002); static const Color disabledRedText = Color(0xFF890002);
static const Color invitedOrange = Color(0xFFFFE193); static const Color invitedOrange = Color(0xFFFFE193);
static const Color invitedOrangeText = Color(0xFFFFBF00); static const Color invitedOrangeText = Color(0xFFFFBF00);
static const Color lightGrayBorderColor = Color(0xB2D5D5D5);
//background: #F8F8F8; //background: #F8F8F8;
} }