Even more size and color adjustments.

This commit is contained in:
KotlinGeekDev
2025-09-24 11:37:25 +01:00
parent 3c87925b38
commit ab6d0961e8
2 changed files with 7 additions and 3 deletions
@@ -311,12 +311,13 @@ fun FollowSetListItem(
.align(Alignment.CenterVertically)
.background(
color = MaterialTheme.colorScheme.errorContainer,
shape = RoundedCornerShape(size = 15.dp),
shape = RoundedCornerShape(percent = 80),
),
) {
Icon(
imageVector = Icons.Default.Delete,
contentDescription = null,
modifier = Modifier.size(20.dp),
)
}
}
@@ -415,11 +415,14 @@ fun FollowSetItem(
Icon(
imageVector = Icons.Filled.Add,
contentDescription = null,
tint = MaterialTheme.colorScheme.onBackground,
tint = Color.White,
)
}
}
Text(text = stringRes(if (isUserInList) R.string.remove else R.string.add), color = Color.Gray)
Text(
text = stringRes(if (isUserInList) R.string.remove else R.string.add),
color = MaterialTheme.colorScheme.onBackground,
)
}
}
}