Skip to content

BlueWallet/react-native-handoff

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
    }
}

Packages

No packages published

Languages

  • Objective-C 54.0%
  • JavaScript 25.0%
  • Ruby 21.0%