Jc Miñarro
Jc Miñarro
Implemented on #272
I don't think it is an easy change because not all of the `handler` use a `String` as the trigger, they could use a `Filter` or specific content in the...
> Add my_chat_member to update according to https://core.telegram.org/bots/api#update Hello @Zheg-al Thanks for the PR. Looks like this PR contains multiple features (the new field `my_chat_member`, an option to handle exceptions,...
@red-avtovo I couldn't complete it yet. I have a branch that is working on a project I need it, but it only works if your bot is not used from...
Hello @lukicmarko The `MessageListHeaderView` already have a `setTitle()` method, is [it](https://github.com/GetStream/stream-chat-android/blob/main/stream-chat-android-ui-components/src/main/kotlin/io/getstream/chat/android/ui/feature/messages/header/MessageListHeaderView.kt#L92) not enough? If you are using our Compose SDK, we expose a way to format channel title within [ChatTheme](https://github.com/GetStream/stream-chat-android/blob/main/stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/theme/ChatTheme.kt#L220)...
Hello @donlan We already added `extraData` to `UploadedFile` class. It was implemented on #5230 and it is already available on our last release.
Hello @donlan This error comes from the Kotlinx Coroutines Library. Digging on their repository, they already have an [opened issue](https://github.com/Kotlin/kotlinx.coroutines/issues/3820#issuecomment-1942889268) related to it, and looks like the root cause is...
Hello @mararzu A lot of improvements have been made on our v6 release, some of them related to the cache/db the SDK uses internally to keep the state of the...
Hello @Testtaccount Currently the `UserAvatarView` doesn't expose this attribute, but you should be able to provide a custom [UserAvatarRenderer](https://getstream.io/chat/docs/sdk/android/ui/general-customization/chatui/#customizing-user-avatars-using-useravatarrenderer) and set `ScaleType.CENTER_CROP` to the target. Something like: ``` ChatUI.userAvatarRenderer =...
Hello @Zee-93 Are you customizing the MessageListView? Could you share with us which customization you are doing there?