Skip to content

v3.5.0

Compare
Choose a tag to compare
@bang9 bang9 released this 26 Mar 02:40
· 91 commits to main since this release
d1153f2

3.5.0 (2024-03-26)

Release notes

  • Added enableReactionsSupergroup to enable reactions in super group channels.
    import { SendbirdUIKitContainer } from '@sendbird/uikit-react-native';
    
    const App = () => {
      return (
        <SendbirdUIKitContainer
          uikitOptions={{
            groupChannel: {
              enableReactionsSupergroup: true,
            },
          }}
        >
          {/* Rest of your app */}
        </SendbirdUIKitContainer>
      );
    };

Changelogs

Features

  • support reactions for super group channel (8ab0720)