Skip to main content

React Native SDK

The React Native SDK uses the same @kovio/chatbot-ad package as the React SDK. All documentation and examples apply to React Native applications.
Same Package: React and React Native use the same SDK package. The component works seamlessly in both environments.

Quick Start

import { ChatbotAd } from '@kovio/chatbot-ad'

function App() {
  return (
    <View>
      <ChatbotAd
        publisherId="your-publisher-id"
        keyword="technology,ai"
        theme="dark"
        format="standard"
      />
    </View>
  )
}
All React SDK documentation applies to React Native. See the React SDK documentation for complete details, examples, and API reference.

React Native Specific Notes

  • The component works with React Native’s <View> and other native components
  • Styling follows React Native’s StyleSheet conventions
  • All props and features are identical to the React SDK
  • TypeScript support is included

Installation

npm install @kovio/chatbot-ad

Full Documentation

For complete documentation, API reference, examples, and troubleshooting, see the React SDK documentation.

View React SDK Documentation

Complete documentation, examples, and API reference for the React/React Native SDK.