react-native-camera-kit/src/CameraScreen/CameraKitCameraScreenStyleObject.android.js
Ran Greenberg 16e81b3a36 improve camera screen on android
merge index for both platforms
2017-03-14 12:44:19 +02:00

28 lines
645 B
JavaScript

import { Dimensions } from 'react-native';
const { width, height } = Dimensions.get('window');
export default styleObject = {
cameraContainer: {
position: 'absolute',
top: 0,
left: 0,
width, height
},
// bottomButtons: {
// flex: 2,
// backgroundColor: 'transparent',
// flexDirection: 'row',
// justifyContent: 'space-between',
// padding: 10
// },
bottomButtons: {
flex: 2,
flexDirection: 'row',
justifyContent: 'space-between',
padding: 14
},
gap: {
flex: 10,
flexDirection: 'column'
},
};