ignite-router-flux
Version:
Infinite Red's hot boilerplate for React Native.
25 lines (23 loc) • 471 B
JavaScript
import {StyleSheet} from 'react-native'
import {Fonts, Metrics, Colors} from '../../Themes/'
export default StyleSheet.create({
applicationView: {
flex: 1
},
container: {
flex: 1,
justifyContent: 'center',
backgroundColor: Colors.background
},
welcome: {
fontSize: 20,
textAlign: 'center',
fontFamily: Fonts.type.base,
margin: Metrics.baseMargin
},
myImage: {
width: 200,
height: 200,
alignSelf: 'center'
}
})