UNPKG

expo-transparent-video

Version:

An Android transparent video component for React Native and Expo.

6 lines (4 loc) 247 B
import { requireNativeViewManager } from 'expo-modules-core'; import { Platform } from "react-native"; const NativeView = Platform.OS === "android" ? requireNativeViewManager('ExpoTransparentVideo') : (_: any) => null; export default NativeView;