File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change 1
- ## v3.4.3
1
+ ## v3.5.0
2
2
3
- - Added ` disableFastImage ` prop to Image component in foundation package .
3
+ - Added ` enableReactionsSupergroup ` to enable reactions in super group channels .
4
4
``` 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
+ };
9
20
```
You can’t perform that action at this time.
0 commit comments