File tree Expand file tree Collapse file tree 1 file changed +38
-4
lines changed
Expand file tree Collapse file tree 1 file changed +38
-4
lines changed Original file line number Diff line number Diff line change 1- ## v3.1.2
1+ ## v3.2.0
22
3- - Add ` chatOptions.localCacheEncryption ` to SendbirdUIKitContainer props
4- - Filter deactivated users when making mention suggestions
5- - In the case of a resolved version, a android inverted flatlist warning message is not displayed.
3+ - Add chat init params to ` chatOptions ` in ` SendbirdUIKitContainer ` props.
4+ - Add ` reaction.onPressUserProfile ` to ` SendbirdUIKitContainer ` props.
5+ - Add ` scrollToMessage ` to ` GroupChannelContexts.MessageList ` .
6+ - Add Voice message
7+
8+ ``` tsx
9+ const App = () => {
10+ return (
11+ <SendbirdUIKitContainer
12+ uikitOptions = { {
13+ groupChannel: {
14+ enableVoiceMessage: true ,
15+ },
16+ }}
17+ platformServices = { {
18+ recorder: RecorderService ,
19+ player: PlayerService ,
20+ }}
21+ />
22+ );
23+ };
24+ ```
25+
26+ Before using it, you should implement the ` RecorderService ` and ` PlayerService ` platform services.<br />
27+ You can implement this easily by using helper functions.
28+
29+ > - CLI
30+ > - Install ` react-native-permissions ` and ` react-native-audio-recorder-player ` .
31+ > - Create platform services using ` createNativeRecorderService ` and ` createNativePlayerService ` .
32+ > - Expo:
33+ > - Install ` expo-av `
34+ > - Create platform services using ` createExpoRecorderService ` and ` createExpoPlayerService ` .
35+
36+ - Fix the display of a message unavailable text if the message is not accessible.
37+ - Fix the search for messages within an accessible range.
38+ - Fix the usage of color variants in unknown group channel messages.
39+ - Fix the ensure that the UIKit configuration is always initialized, even in offline mode.
You can’t perform that action at this time.
0 commit comments