style.js 1.71 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
import { Dimensions, StyleSheet } from 'react-native'
import dimension from '../../values/dimension'
import colors from '../../values/colors'
import { color } from 'react-native-reanimated';
const windowWidth = Dimensions.get('window').width;
export const headerStyle = StyleSheet.create({

})
export const contentStyle = StyleSheet.create({
    btnFilter: {
        backgroundColor: "#5d78ff",
        justifyContent: 'center',
        alignItems: 'center',
        height: 40,
        borderRadius: 5,
        marginBottom: 30,
        marginTop: 20
    },
    txtTitle: {
        fontSize: 14,
        fontWeight: 'bold',
        color: 'black',
        marginBottom: 10,
        paddingLeft: 10,
        paddingTop: 10,
    },
    viewCalendar: {
        borderBottomWidth: 0.2,
        flexDirection: 'row'
    },
    btnIcon: {
        width: 20,
        height: 20,
        position: 'absolute',
        right: 0
    },
    subText: {
        fontSize: 10
    },
    boldTxt: {
        flex: 1,
        textAlign: 'right',
        marginRight: 10,
        fontWeight: '500',
        color: 'black'
    }
})

export const mainStyle = StyleSheet.create({
    row: {
        flexDirection: 'row',
        marginTop: 5,
    },
    marginSpaceAround: {
        justifyContent: 'space-around'
    },
    viewChart: {
        marginTop: 10,
        borderWidth: 0.5,
        borderColor: 'white',
        backgroundColor: 'white',
        padding: 5,
    }
})
export const styles = StyleSheet.create({
    container: { flex: 1, padding: 16, paddingTop: 30, backgroundColor: '#fff' },
    head: { height: 40, backgroundColor: '#f1f8ff' },
    text: { alignSelf: 'center' },
    marginTop: { marginTop: 10 },
    errText: {
        color: 'red',
    }
});