Skip to content

Commit becbbba

Browse files
VelikovPetarclaude
andauthored
Update channel mute icon and sample app bottom bar icons (#6348)
Co-authored-by: Claude <noreply@anthropic.com>
1 parent 2f22026 commit becbbba

7 files changed

Lines changed: 4 additions & 86 deletions

File tree

stream-chat-android-compose-sample/src/main/java/io/getstream/chat/android/compose/sample/ui/component/AppBottomBar.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fun AppBottomBar(
6868
horizontalArrangement = Arrangement.SpaceEvenly,
6969
) {
7070
AppBottomBarOptionTile(
71-
icon = R.drawable.ic_chats,
71+
icon = ComposeR.drawable.stream_design_ic_message_bubble_fill,
7272
text = R.string.app_bottom_bar_chats,
7373
isSelected = selectedOption == AppBottomBarOption.CHATS,
7474
onClick = { onOptionSelected(AppBottomBarOption.CHATS) },
@@ -85,7 +85,7 @@ fun AppBottomBar(
8585
onClick = { onOptionSelected(AppBottomBarOption.MENTIONS) },
8686
)
8787
AppBottomBarOptionTile(
88-
icon = R.drawable.ic_threads,
88+
icon = ComposeR.drawable.stream_design_ic_thread,
8989
text = R.string.app_bottom_bar_threads,
9090
isSelected = selectedOption == AppBottomBarOption.THREADS,
9191
onClick = { onOptionSelected(AppBottomBarOption.THREADS) },

stream-chat-android-compose-sample/src/main/res/drawable/ic_chats.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

stream-chat-android-compose-sample/src/main/res/drawable/ic_threads.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/channels/list/ChannelItem.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ private fun TitleRow(
282282
modifier = Modifier
283283
.testTag("Stream_ChannelMutedIcon")
284284
.size(16.dp),
285-
painter = painterResource(id = R.drawable.stream_design_ic_bell_off),
285+
painter = painterResource(id = R.drawable.stream_design_ic_mute),
286286
contentDescription = null,
287287
tint = ChatTheme.colors.textTertiary,
288288
)
@@ -349,7 +349,7 @@ private fun MessageRow(
349349
modifier = Modifier
350350
.testTag("Stream_ChannelMutedIcon")
351351
.size(16.dp),
352-
painter = painterResource(id = R.drawable.stream_design_ic_bell_off),
352+
painter = painterResource(id = R.drawable.stream_design_ic_mute),
353353
contentDescription = null,
354354
tint = ChatTheme.colors.textTertiary,
355355
)

stream-chat-android-compose/src/main/res/drawable/stream_design_ic_bell_off.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.
-32 Bytes
Loading
Loading

0 commit comments

Comments
 (0)