Skip to content

Instantly share code, notes, and snippets.

@gergardiol
Created January 29, 2020 05:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gergardiol/69f4fa4b79ac5accad5d4a50b6794704 to your computer and use it in GitHub Desktop.
Save gergardiol/69f4fa4b79ac5accad5d4a50b6794704 to your computer and use it in GitHub Desktop.
Airplay react native integration library code
import React from 'react';
import { Platform } from 'react-native';
import { AirPlayButton } from 'react-native-airplay-btn';
const MyAirplayApp = () => Platform.OS === 'ios' && <AirPlayButton style={{ height: 30, width: 30 }} />;
export default MyAirplayApp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment