react-native-airplay-menu

RN module to open AirPlay menu imperatively


Keywords
airplay, react-native, react, ios
License
ISC
Install
npm install react-native-airplay-menu@1.0.13

Documentation

This library provides method to show AirPlay menu

Usage

<>
    <TouchableOpacity
        style={[styles.wrapper, styles.border]}
        onPress={() => this.menuRef && this.menuRef.showMenu()}
    >
        <Text style={styles.button}>Listen in AirPods</Text>
    </TouchableOpacity>

    <AirPlay
        ref={e => (this.menuRef = e)}
    />
</>