You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/uikit-react-native/README.md
+42-17Lines changed: 42 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,12 @@ UIKit for React-Native can be installed through either `yarn` or `npm`
45
45
**Install dependencies**
46
46
47
47
```sh
48
-
npm i @sendbird/uikit-react-native \
49
-
@sendbird/chat \
50
-
date-fns \
51
-
react-native-safe-area-context \
52
-
@react-native-community/netinfo
48
+
npm install @sendbird/uikit-react-native \
49
+
@sendbird/chat \
50
+
date-fns \
51
+
react-native-safe-area-context \
52
+
@react-native-community/netinfo \
53
+
@react-native-async-storage/async-storage
53
54
```
54
55
55
56
**Linking native modules**
@@ -121,6 +122,7 @@ const App = () => {
121
122
file:FileService,
122
123
notification:NotificationService,
123
124
clipboard:ClipboardService,
125
+
media:MediaService,
124
126
}}
125
127
>
126
128
{/* ... */}
@@ -136,17 +138,20 @@ In order to implement the interfaces to your React Native app more easily, we pr
136
138
137
139
**Using React Native CLI**
138
140
139
-
You can use `createNativeClipboardService`, `createNativeNotificationService`and `createNativeFileService` helper functions with below native modules.
141
+
You can use `createNativeClipboardService`, `createNativeNotificationService`, `createNativeFileService`and `createNativeMediaService` helper functions with below native modules.
You can use `createExpoClipboardService`, `createExpoNotificationService`and `createExpoFileService` helper functions with below expo modules.
192
+
You can use `createExpoClipboardService`, `createExpoNotificationService`, `createExpoFileService`and `createExpoMediaService` helper functions with below expo modules.
180
193
181
194
```sh
182
195
expo install expo-image-picker \
183
196
expo-document-picker \
184
197
expo-media-library \
185
198
expo-file-system \
186
199
expo-clipboard \
187
-
expo-notifications
200
+
expo-notifications \
201
+
expo-av \
202
+
expo-video-thumbnails \
203
+
expo-image-manipulator
188
204
```
189
205
190
206
```ts
@@ -194,15 +210,24 @@ import * as ExpoFS from 'expo-file-system';
0 commit comments