From 0a5b60aed610a07546b3be0c7c0fbc322d69c9de Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Mon, 1 Aug 2022 17:39:50 -0500 Subject: [PATCH] drop shadows --- squarenotsquare/src/screens/styles/AppStyles.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/squarenotsquare/src/screens/styles/AppStyles.js b/squarenotsquare/src/screens/styles/AppStyles.js index 2ac49d9..2120d01 100644 --- a/squarenotsquare/src/screens/styles/AppStyles.js +++ b/squarenotsquare/src/screens/styles/AppStyles.js @@ -33,6 +33,17 @@ export const styles = StyleSheet.create({ left: 0, right: 0, }, + + dropShadow: { + elevation: Metrics.shadows.elevation, + shadowOffset: { + width: Metrics.shadows.offsetWidth, + height: Metrics.shadows.offsetHeight + }, + shadowColor: Colors.material.dark, + shadowOpacity: Metrics.shadows.opacity, + shadowRadius: Metrics.shadows.radius + }, spaceBetween: {justifyContent: 'space-between'}, spaceEvenly: {justifyContent: 'space-evenly'},