react-native-web-chatbot
v1.0.11
Published
A custom react-native chat-bot
Downloads
14
Readme
react-native-web-chatbot
React Native Web ChatBot is a library that provides a customizable Chat component for React Native applications. This library simplifies the process of creating Realtime web Chat and to customize the Chat to match the design and functionality of your application.
Features
- Easy to use
- Consistent look and feel on iOS and Android
- Customizable font size, colors and animation duration
- Implemented with javascript
If you love this library, give us a star, you will be a ray of sunshine in our lives :)
Getting started
npm install react-native-web-chatbot --save
ChatBot example
import { StyleSheet, View } from "react-native";
import React from "react";
import ChatBot from "react-native-web-chatbot";
const App = () => {
return (
<View style={styles.container}>
<ChatBot />
</View>
);
};
export default App;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
});