airbridge-react-native-sdk
Version:
Airbridge SDK for React Native
40 lines (38 loc) • 856 B
JavaScript
import { StyleSheet } from 'react-native'
import { Colors } from './Colors'
export const Styles = StyleSheet.create({
container: {
margin: 16,
},
centeredView: {
flex: 1,
justifyContent: 'center',
alignContent: 'center',
backgroundColor: 'rgba(0, 0, 0, 0.5)'
},
modalView: {
padding: 12,
margin: 16,
backgroundColor: 'white',
borderRadius: 16,
alignItems: 'center',
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 4,
elevation: 5,
},
h2: {
fontWeight: '900',
fontSize: 18,
},
line: {
backgroundColor: Colors.grey,
width:'100%',
borderWidth: 0.5,
margin: 4
}
})