Skip to main content

Reactions

Reactions

​ Reactions in video calling enable participants to express emotions and non-verbal cues without interrupting the flow of conversation. They also help create a more interactive and responsive virtual meeting environment.

It is easy to create reactions with Stream Video's Flutter SDK.

await call.sendReaction(reactionType: 'fireworks');

You can also add custom data to the reaction and specify a specific emoji:

await call.sendReaction(
reactionType: 'raise-hand',
emojiCode: ':smile:',
custom: {'mycustomfield': 'mycustomvalue'},
);

Refer to the cookbook for information on built-in reaction components and customization.

Did you find this page helpful?