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
@@ -199,6 +199,64 @@ include ':react-native-video'
199
199
project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android-exoplayer')
200
200
```
201
201
202
+
#### Sharing attachments
203
+
204
+
Install `react-native-share` in your React Native project.
205
+
206
+
Installing this package will allow your users to share attachments from the gallery using the native sharing interface on their devices.
207
+
208
+
<Tabs
209
+
defaultValue='yarn'
210
+
values={[
211
+
{ label: 'Yarn', value: 'yarn' },
212
+
{ label: 'npm', value: 'npm' },
213
+
]}
214
+
>
215
+
<TabItemvalue='yarn'>
216
+
217
+
```bash
218
+
yarn add react-native-share
219
+
```
220
+
221
+
</TabItem>
222
+
<TabItemvalue='npm'>
223
+
224
+
```bash
225
+
npm install react-native-share
226
+
```
227
+
228
+
</TabItem>
229
+
</Tabs>
230
+
231
+
#### Haptic feedback
232
+
233
+
Install `react-native-haptic-feedback` in your React Native project.
234
+
235
+
Installing this package will enable haptic feedback when scaling images in the image gallery if the scaling hits the higher or lower limits for its value.
236
+
237
+
<Tabs
238
+
defaultValue='yarn'
239
+
values={[
240
+
{ label: 'Yarn', value: 'yarn' },
241
+
{ label: 'npm', value: 'npm' },
242
+
]}
243
+
>
244
+
<TabItemvalue='yarn'>
245
+
246
+
```bash
247
+
yarn add react-native-haptic-feedback
248
+
```
249
+
250
+
</TabItem>
251
+
<TabItemvalue='npm'>
252
+
253
+
```bash
254
+
npm install react-native-haptic-feedback
255
+
```
256
+
257
+
</TabItem>
258
+
</Tabs>
259
+
202
260
### AndroidX Support
203
261
204
262
> AndroidX is a major step forward in the Android ecosystem, and the old support library artifacts are being deprecated.
0 commit comments