stream-chat-flutter
stream-chat-flutter copied to clipboard
Can we have a reaction picker and custom reactions per user
Please select which package this feature is related to
stream_chat_flutter
Which platforms would this feature impact?
iOS, Android, Web, Windows, MacOS, Linux
Is your feature request related to a problem?
Hi I'm looking for a set of different reactions per user. It will be nice if I can populate a list with all possible reactions, and users to be able to choose some/all of them.
The visual I'm looking
Describe the solution that you'd like
No response
Describe alternatives that you have considered
No response
Additional context
No response
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
This issue is stale because it has been open for 20 days with no activity.
This would definitely be an awesome feature. Any updates on this ?
Hi @gadzhov,
To use custom reactions, you can add configuration to the StreamChat
widget:
StreamChat(
client: client,
streamChatConfigData: StreamChatConfigurationData(
reactionIcons: [
StreamReactionIcon(
type: 'love',
builder: (context, highlighted, size) {
// Build your reaction
},
),
],
),
child: widget,
),
However, the default functionality and look of the picker can't be changed at the moment and it is not currently something we plan to do. We may circle back to it and try to make it a bit more customizable but we have some time to get there.
Hope this helps. Thanks!