react-native-video-zoom-control
Version:
A video player overlay for React Native Video that supports pinch-to-zoom and multiple video renditions.
27 lines (26 loc) • 544 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.styles = void 0;
var _reactNative = require("react-native");
const styles = exports.styles = _reactNative.StyleSheet.create({
container: {
position: 'absolute',
top: 0,
right: 0,
bottom: 0,
left: 0,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
zIndex: 99999
},
playContainer: {
width: '10%',
alignItems: 'center'
},
play: {},
rewind: {}
});
//# sourceMappingURL=styles.js.map