dimension.js 419 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import {
    widthPercentageToDP as wp,
    heightPercentageToDP as hp,
  } from 'react-native-responsive-screen'
const dimension = {
    defaultMargin : wp('5%'),
    defaultPadding: wp('5%'),
    largeButton: wp('80%'),
    mediumButton: wp('60%'),
    smallButton: wp('40%'),
    fontSizeSmall: hp('2%'),
    fontSizeMed: hp('3%'),
    fontSizeLarge: hp('4%'),
    borderRadius: 10, 

    
}
export default dimension