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
+26-3Lines changed: 26 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
-
# Chative Widget for React Native
1
+
# [Chative.IO](https://chative.io/) Widget for React Native
2
2
3
-
Chative Widget is a React Native component that provides an easy-to-use chat widget for your mobile applications. It allows you to integrate a customizable chat interface with minimal setup.
3
+
[Chative.IO](https://chative.io/) Widget is a React Native component that provides an easy-to-use chat widget for your mobile applications. It allows you to integrate a customizable chat interface with minimal setup.
4
4
5
5
## Features
6
6
7
7
- Customizable chat interface
8
8
- Easy to show/hide programmatically
9
9
- Supports custom header components
10
+
- Supports filling user information into live chat. (v0.5 or higher)
10
11
- Adjustable insets for different device sizes
11
12
- TypeScript support
12
13
@@ -44,12 +45,24 @@ export default function App() {
44
45
// widgetRef.current?.hide();
45
46
};
46
47
48
+
constuser= {
49
+
user_id:'UNIQUE_USER_ID',
50
+
user: {
51
+
email:'acme@example.com', // Your user's email address
52
+
first_name:'John',
53
+
last_name:'Doe',
54
+
phone:'+1234567890',
55
+
custom_field:'CUSTOMER_FIELD_VALUE'// Replace key and value with your custom field
0 commit comments