@8man/react-native-media-console
Version:
A media player for the react-native-video component
24 lines • 501 B
JavaScript
import React from 'react';
import { StyleSheet } from 'react-native';
export const Overlay = ({
animations: {
AnimatedView,
controlsOpacity
}
}) => {
return /*#__PURE__*/React.createElement(AnimatedView, {
style: [_styles.overlay, controlsOpacity]
});
};
const _styles = StyleSheet.create({
overlay: {
position: 'absolute',
top: 0,
right: 0,
left: 0,
bottom: 0,
backgroundColor: 'rgba(0,0,0,.6)',
opacity: 0
}
});
//# sourceMappingURL=Overlay.js.map