rn-verto-typescript
Version:
Verto Free Switch with React Native Type Script
72 lines (71 loc) • 1.49 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const react_native_1 = require("react-native");
const styles = react_native_1.StyleSheet.create({
container: {
flex: 1,
width: '100%',
height: '100%',
},
streamContainer: {
flex: 1,
width: '100%',
height: '100%'
},
stream: {
flex: 1,
height: '100%',
width: '100%',
},
localStreamContainer: {
position: 'absolute',
height: 200,
width: 120,
right: 12,
bottom: 12,
zIndex: 10,
elevation: 10
},
// localStream: {
// flex: 1,
// height: '100%',
// width: '100%',
// },
remoteStreamContainer: {
flex: 1,
height: '100%',
width: '100%',
resizeMode: 'cover'
},
// remoteStream: {
// flex: 1,
// height: '100%',
// width: '100%',
// },
input: {
height: 40,
margin: 12,
borderWidth: 1,
padding: 10,
flex: 2
},
text: {
backgroundColor: 'red',
color: 'white',
fontSize: 14,
textAlign: 'center',
marginTop: 12,
marginRight: 2,
marginBottom: 12,
marginLeft: 2,
paddingTop: 12,
paddingRight: 2,
paddingBottom: 12,
paddingLeft: 2
},
actionItem: {
flex: 5,
height: 80
}
});
exports.default = styles;