forked from melod1n/fast-messenger
update some icons
This commit is contained in:
+3
-3
@@ -34,12 +34,12 @@ sealed class MessageOption(
|
||||
|
||||
data object Pin : MessageOption(
|
||||
titleResId = R.string.message_context_action_pin,
|
||||
iconResId = R.drawable.pin_outline_24
|
||||
iconResId = R.drawable.ic_keep_round_24
|
||||
)
|
||||
|
||||
data object Unpin : MessageOption(
|
||||
titleResId = R.string.message_context_action_unpin,
|
||||
iconResId = R.drawable.pin_off_outline_24
|
||||
iconResId = R.drawable.ic_keep_off_round_24
|
||||
)
|
||||
|
||||
data object Read : MessageOption(
|
||||
@@ -79,6 +79,6 @@ sealed class MessageOption(
|
||||
|
||||
data object Delete : MessageOption(
|
||||
titleResId = R.string.message_context_action_delete,
|
||||
iconResId = R.drawable.round_delete_outline_24
|
||||
iconResId = R.drawable.ic_delete_round_24
|
||||
)
|
||||
}
|
||||
|
||||
+2
-2
@@ -54,7 +54,7 @@ fun BoxScope.DateStatus(
|
||||
if (isPinned) {
|
||||
Spacer(modifier = Modifier.width(4.dp))
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.ic_round_push_pin_24),
|
||||
painter = painterResource(R.drawable.ic_keep_fill_round_24),
|
||||
contentDescription = null,
|
||||
modifier = Modifier
|
||||
.size(14.dp)
|
||||
@@ -85,7 +85,7 @@ fun BoxScope.DateStatus(
|
||||
when (sendingStatus) {
|
||||
SendingStatus.SENDING -> R.drawable.round_access_time_24
|
||||
SendingStatus.SENT -> {
|
||||
if (isRead) R.drawable.round_done_all_24
|
||||
if (isRead) R.drawable.ic_done_all_round_24
|
||||
else R.drawable.ic_round_done_24
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -324,7 +324,7 @@ fun InputBar(
|
||||
Icon(
|
||||
painter = painterResource(
|
||||
id = when (actionMode) {
|
||||
ActionMode.DELETE -> R.drawable.round_delete_outline_24
|
||||
ActionMode.DELETE -> R.drawable.ic_delete_round_24
|
||||
ActionMode.EDIT -> R.drawable.ic_round_done_24
|
||||
ActionMode.RECORD_AUDIO -> R.drawable.ic_round_mic_none_24
|
||||
ActionMode.RECORD_VIDEO -> R.drawable.rounded_photo_camera_24
|
||||
|
||||
+1
-1
@@ -212,7 +212,7 @@ fun MessagesHistoryTopBar(
|
||||
}
|
||||
IconButton(onClick = onDeleteSelectedButtonClicked) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.round_delete_outline_24),
|
||||
painter = painterResource(R.drawable.ic_delete_round_24),
|
||||
contentDescription = null
|
||||
)
|
||||
}
|
||||
|
||||
+1
-1
@@ -52,7 +52,7 @@ fun PinnedMessageContainer(
|
||||
horizontalArrangement = Arrangement.spacedBy(12.dp)
|
||||
) {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.ic_round_push_pin_24),
|
||||
painter = painterResource(R.drawable.ic_keep_fill_round_24),
|
||||
contentDescription = null,
|
||||
modifier = Modifier
|
||||
.rotate(45f)
|
||||
|
||||
Reference in New Issue
Block a user