style.js 873 Bytes
import { StyleSheet } from 'react-native'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { setUnit } from '../../libs/utils'

const styles = StyleSheet.create({
    scrollView: {
        flex: 1,
        backgroundColor: "#6E4DB3"
    },
    body: {
        flex: 1
    },
    h1: {
        fontWeight: '400',
        textAlign: 'center',
        fontSize: 40,
        // paddingTop: 20,
        paddingBottom: 20,
        color: Colors.white
    },
    button: {
        marginBottom: 20,
        marginTop: 20
    },
    shoppItem: {
        width: '100%',
        padding: setUnit(20)
    },
    img: {
        height: setUnit(500)
    },
    shoppTitle: {
        textAlign: 'center',
        fontSize: 16,
        color: 'rgba(0,0,0,.7)',
        paddingTop: 5,
        paddingBottom: 5,
        backgroundColor: '#fff'
    }
})

export { styles }