Skip to content

Commit 0560015

Browse files
committed
chore: update changelog draft
1 parent 7486041 commit 0560015

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

CHANGELOG_DRAFT.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1-
## v3.4.3
1+
## v3.5.0
22

3-
- Added `disableFastImage` prop to Image component in foundation package.
3+
- Added `enableReactionsSupergroup` to enable reactions in super group channels.
44
```tsx
5-
import { Image } from '@sendbird/uikit-react-native-foundation';
6-
7-
// If you don't want to use FastImage in UIKit for React Native, you can specify this default prop
8-
if (Image.defaultProps) Image.defaultProps.disableFastImage = true;
5+
import { SendbirdUIKitContainer } from '@sendbird/uikit-react-native';
6+
7+
const App = () => {
8+
return (
9+
<SendbirdUIKitContainer
10+
uikitOptions={{
11+
groupChannel: {
12+
enableReactionsSupergroup: true,
13+
},
14+
}}
15+
>
16+
{/* Rest of your app */}
17+
</SendbirdUIKitContainer>
18+
);
19+
};
920
```

0 commit comments

Comments
 (0)