citizenship_app_news
Version:
News module for Citizenship project application
21 lines (19 loc) • 617 B
JavaScript
import { widthPercentageToDP as wp, heightPercentageToDP as hp } from 'react-native-responsive-screen';
export const SHADOW_HEIGHT = hp("0.5%");
export const SHADOW_ELEVATION = hp("1%");
export const BUTTON_HEIGHT = hp('7%');
export const BUTTON_WIDTH = wp('85%');
export const BUTTON_RADIUS = hp('1%');
export const TOOLBAR_HEIGHT = hp('8%');
export const MODAL_RADIUS = wp('1.5%');
export const BORDER_WIDTH = wp('0.5%');
export default {
SHADOW_HEIGHT,
SHADOW_ELEVATION,
BUTTON_HEIGHT,
BUTTON_WIDTH,
BUTTON_RADIUS,
MODAL_RADIUS,
BORDER_WIDTH,
TOOLBAR_HEIGHT
};