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

export const styles = StyleSheet.create({
    body: {
        backgroundColor: Colors.white,
        flex: 1
    },
    title: {
        fontSize: setUnit(40),
        textAlign: 'center',
        padding: setUnit(20),
        paddingBottom: setUnit(80)
    }
})