[BREAKGLASS] Append-only mirror of github.com/bluewallet/react-native-handoff
| ios | ||
| .gitignore | ||
| package.json | ||
| README.md | ||
| RNHandoff.ios.js | ||
| RNHandoff.js | ||
| RNHandoff.podspec | ||
react-native-handoff
Installation
yarn add react-native-handoff
react-native link
Usage
import React, { Component } from 'react';
import { Text, View } from 'react-native';
import Handoff from 'react-native-handoff';
export default class MyComponent extends Component {
render() {
return (
<View>
<Handoff
title="My Page"
type="com.example.myapp.lookingAtPage"
url="https://example.com" />
<View>
<Text>My Example Page</Text>
</View>
</View>
)l
}
}