Even more size and color adjustments.
This commit is contained in:
+2
-1
@@ -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),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
+5
-2
@@ -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,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user