Adding Quack AI to your React Native app
Step 1:
npm install react-native-webviewStep 2:
import { WebView } from 'react-native-webview';
export default function Chatbot() {
return (
// You can drop this Webview wherever you want to put the Chatbot
<WebView source={{ uri: 'https://m.thequack.ai/sdk/<YOUR_TOKEN>' }} style={{ flex: 1 }} />
);
}Step 3 (Optional):
Full Example
Last updated
Was this helpful?
