Questions tagged [getstream-chat]
59 questions
2
votes
1 answer
GetStream: Change message bubble background
How to change GetStream own/current bubble message background color in React Native?
const theme = {
messageSimple: {
content: {
container: {
backgroundColor: 'purple',
},
},
file: {
container: {
…

Bitwise DEVS
- 2,858
- 4
- 24
- 67
2
votes
0 answers
GetStream with Supabase via Edge Function -- how to?
I need to write a Supabase Edge Function that interacts with GetStream.
But as Supabase Edge Functions are running via Deno, I am importing the package via JS Deliver as follows:
import { StreamChat } from…

boeledi
- 6,837
- 10
- 32
- 42
2
votes
1 answer
How to initiate and immediately open your very first channel from noChannelsView with SwiftUI?
Im using getStream ChatChannelListView to present all channels. But when there is no chats im overriding ViewFactory makeNoChannelsView with my custom noChannelsView that has button to initiate chat.
As my noChannelsView is embeded in NavigationView…

Nikola
- 65
- 5
2
votes
2 answers
GetStream : User has no enabled devices associated on Firebase push notification for flutter android
I tried to test the firebase push notification with the stream-cli for my android device
On flutter mobile, i have connected my user and add the firebase messaging token to the StreamChatClient.
await client.connectUser(
User(
…

Nicolas Bourdin
- 323
- 1
- 3
- 7
2
votes
2 answers
Is it possible to filter over nested objects on stream-chat?
stream-chat v6.7.3
When I connect a user besides id, name, and image, I'm adding my own properties as an object, like this:
await client.connectUser({
id: 'jose',
name: 'pepe',
…

Jose
- 116
- 1
- 12
2
votes
0 answers
Stream chat keyboard render error ("stream-chat-react-native"). React Native
Hi i am using stream chat react native sdk, all the setup are done and working fine. Currently facing an issue, when clicking the message input, keyboard appears but my screen flows up above the safearea. I've tried all the way of solutions.
But its…

Prasanth Vijay Kumar
- 21
- 2
2
votes
1 answer
'streamChatState != null': You must have a StreamChat widget at the top of your widget tree
I am new to flutter and im trying to run a chat app with getstream chat api and firebase.
I keep running into an error every time i try to sign in or sign up
Screenshot
this is main.dart
this is my sign_in_screen.dart
class SignInScreen extends…

bee
- 23
- 2
1
vote
1 answer
Querying Channels Based on Custom Data in React Stream Chat
I'm currently working with React Stream Chat and I am attempting to perform a query on the custom data within my channel objects. Each channel object contains a custom data object named "channel_detail" which is structured as…

Tanuj Gupta
- 286
- 5
- 20
1
vote
0 answers
Get Stream Chat: Is it possible to hide message from the customers?
I'd like to add messages that are visible only to our support team, but should be hidden on the customer side.
The opposite should also be possible, how can I send a message from the backend straight to the customer but hide it for our support…

Leonardo Waterkemper
- 11
- 1
1
vote
1 answer
how to query a custom object within a channel
I have this custom data in the channel
{
channelHashId: '111122222',
cid: '111111',
data: {
custom: {
name: "testing"
}
}
address: "my address",
}
i tried
const filter = { type: 'messaging', data: { custom: { name: 'testing' } }…

luis
- 202
- 5
- 13
1
vote
3 answers
What is the replacement of "MessageTeam" in StreamChatReactAPI
StreamChatAPI v10 has got new replacement for some API like "MessageTeam". I have read the documentation but it's difficult to find its replacement.
First code:
Second code:

Adams Albarka
- 21
- 4
1
vote
0 answers
Is it possible to update stream chat persistence in the background in Flutter
The chat is part of the app. The user is connected but not necessarily on the chat screen.
I would like to update the persistence of the chat when the user receives an event (new message or new channel).
Is this possible ?

nassim
- 31
- 3
1
vote
1 answer
Initialise Stream Chat Flutter in part of the application (widget tree)
I'm creating an application with chat functionality and I'm using Stream Chat Flutter. I followed the official tutorial: https://getstream.io/chat/flutter/tutorial/
The tutorial says to use the builder in MaterialApp and wrap the child route with…

Gordon Hayes
- 231
- 1
- 7
1
vote
3 answers
compose lazy gridcells not resolving correctly in a read-only file
Required:
androidx.compose.foundation.lazy.GridCells
Found:
androidx.compose.foundation.lazy.grid.GridCells
for use with ReactionsPicker... a file from Stream Chat library
ReactionsPicker call is in MessagesActivity
'''
is…

Instancer
- 41
- 3
1
vote
1 answer
SwiftUI - Clicking on the add attachment icon in chat crashes with libsystem_kernel.dylib`__abort_with_payload
I'm new to gettream chats and I'm trying to flesh out our chat stream I'm following the tutorial for SwiftUI. Everything went without a hitch. I'm simply using the built in UI using the ChatChannelListView(). Everything works fine until you try…

Thomas Lester
- 182
- 9