# @prosa-ai/conversa-react-native-web-view-widget

> Conversa React Native integration using Web View

Latest version **1.1.1** (published 2023-09-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install @prosa-ai/conversa-react-native-web-view-widget
pnpm add @prosa-ai/conversa-react-native-web-view-widget
yarn add @prosa-ai/conversa-react-native-web-view-widget
bun add @prosa-ai/conversa-react-native-web-view-widget
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2023-09-05 |
| First published | 2023-07-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >= 16.0.0 |
| Dependencies | 5 |
| Unpacked size | 22.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | De Gitgit Agitya |
| Maintainers | deagitya |
| Keywords | react-native, ios, android |

## Links

- npm: https://www.npmjs.com/package/@prosa-ai/conversa-react-native-web-view-widget
- Repository: https://gitlab.prosa.ai/conversa/conversa-react-native-web-view-widget
- npm.io page: https://npm.io/package/@prosa-ai/conversa-react-native-web-view-widget

## Dependencies (5)

- [semantic-release](https://npm.io/package/semantic-release.md) ^21.0.7
- [@semantic-release/git](https://npm.io/package/@semantic-release/git.md) ^10.0.1
- [@semantic-release/npm](https://npm.io/package/@semantic-release/npm.md) ^10.0.4
- [@semantic-release/gitlab](https://npm.io/package/@semantic-release/gitlab.md) ^12.0.5
- [@semantic-release/changelog](https://npm.io/package/@semantic-release/changelog.md) ^6.0.3

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.1.1 (latest) — 2023-09-05
- 1.1.1-beta.1 (beta) — 2023-09-01
- 1.1.1-beta.2 — 2023-09-04
- 1.1.0 — 2023-09-01
- 1.0.1-beta.1 — 2023-08-28
- 1.0.0 — 2023-08-10
- 1.0.0-beta.1 — 2023-08-10
- 0.4.0 — 2023-08-10
- 0.3.0 — 2023-08-02
- 0.2.0 — 2023-07-26
- 0.1.0 — 2023-07-21

## README

# Conversa React Native Web View Widget

## Description

Conversa React Native Web View Widget is a React Native component that allows you to integrate web views widget into your React Native application with ease.

## Features

- Seamlessly integrate web views into your React Native application.
- Customize the behavior and appearance of the web views.
- Pass props and data to the web view as needed.

## Installation

```sh
npm install @prosa-ai/conversa-react-native-web-view-widget
```

## Usage

```js
import * as React from 'react';
import ConversaWebViewWidget from '@prosa-ai/conversa-react-native-web-view-widget';

export default function App() {
  const handleClose = React.useCallback(() => {
    console.log('handle close');
  }, []);

  const handleFinishScenario = React.useCallback((value) => {
    if (value) {
      console.log('scenario is finished');
    }
  }, []);

  return (
    <>
      <ConversaWebViewWidget
        uri="https://example.com"
        handleClose={handleClose}
        handleFinishScenario={handleFinishScenario}
      />
    </>
  );
}
```

## Props

**`uri`** _(string, required)_: The URL of the web page you want to display in the web view.
**`handleClose`** _(function, required)_: A callback function to be called when the web view is closed.
**`handleFinishScenario`** _(function, required)_: A callback function to be called when the scenario is finished.
**`statusBarProps`** _(object, optional)_: Props to be passed to the React Native StatusBar component.

## Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

## License

MIT

---

Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)

---
_Source: https://npm.io/package/@prosa-ai/conversa-react-native-web-view-widget · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
