https://github.com/droiddevgeeks/react-native-upi-intent
https://github.com/droiddevgeeks/react-native-upi-intent
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/droiddevgeeks/react-native-upi-intent
- Owner: droiddevgeeks
- License: mit
- Created: 2025-02-04T07:21:59.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-10T13:25:43.000Z (over 1 year ago)
- Last Synced: 2025-08-16T22:23:52.761Z (10 months ago)
- Language: Kotlin
- Size: 1.66 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# react-native-js-bridge
Get the webview nativeid or tag and pass to addJsBridge. It will add JS bridge on webview object create by `react-native-webview`
## Installation
```sh
npm install react-native-js-bridge
yarn add react-native-js-bridge
```
## Usage
```js
import { addJsBridge } from 'react-native-js-bridge';
// ...
const checkandAddJsBridge = (tag: number) => {
const nativeTag = findNodeHandle(tag);
if (nativeTag) addJsBridge(nativeTag);
};
```
## 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)