expo-video
Version:
A cross-platform, performant video component for React Native and Expo with Web support
13 lines • 705 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { View } from 'react-native';
/**
* A view displaying the [`AVRoutePickerView`](https://developer.apple.com/documentation/avkit/avroutepickerview). Shows a button, when pressed, an AirPlay device picker shows up, allowing users to stream the currently playing video
* to any available AirPlay sink.
*
* > When using this view, make sure that the [`allowsExternalPlayback`](#allowsexternalplayback) player property is set to `true`.
* @platform ios
*/
export default function VideoAirPlayButton(props) {
return _jsx(View, { ...props, style: [{ minWidth: 30, minHeight: 30 }, props.style] });
}
//# sourceMappingURL=VideoAirPlayButton.js.map