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: README.md
+29-2Lines changed: 29 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,45 @@ Reactjs chat elements
4
4
## Install
5
5
6
6
```
7
-
npm install react-chat-elements@latest --save
7
+
npm install react-chat-elements --save
8
8
```
9
9
10
+
### For React Native
11
+
Step 1: Install react-chat-elements
12
+
13
+
```
14
+
npm install react-chat-elements --save
15
+
```
16
+
17
+
If you have already installed react-native-vector-icons as a dependency for your project you can skip this step. Otherwise run the following command:
18
+
19
+
Step 2: Install react-native-vector-icons
20
+
21
+
```
22
+
npm i --save react-native-vector-icons
23
+
```
24
+
25
+
**Link:**
26
+
27
+
```
28
+
react-native link react-native-vector-icons
29
+
```
30
+
31
+
*If you have any issues installing react-native-vector-icons, check out their installation guide [here](https://github.com/oblador/react-native-vector-icons#installation).*
0 commit comments