From c247c66060a07b0041bab8d2c151b1183909ed7c Mon Sep 17 00:00:00 2001 From: Cyber Majeed <73933962+cybermajeed@users.noreply.github.com> Date: Sun, 14 Apr 2024 18:31:00 +0400 Subject: [PATCH] Update App.js --- mobile/App.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mobile/App.js b/mobile/App.js index daf9ba2..9001ea1 100644 --- a/mobile/App.js +++ b/mobile/App.js @@ -124,24 +124,24 @@ const styles = StyleSheet.create({ }, loginBtn: { paddingVertical: 10, - paddingHorizontal: 20, + paddingHorizontal: 25, marginTop: 10, - borderRadius:100, + borderRadius: 100, ...Platform.select({ default: { shadowColor: "#000", - shadowOffset: { width: 0, height: 5 }, - shadowRadius: 5, - shadowOpacity: 0.5, + shadowOffset: { width: 0, height: 3 }, + shadowRadius: 4, + shadowOpacity: 0.3, }, ios: { shadowColor: "#000", - shadowOffset: { width: 0, height: 5 }, - shadowRadius: 5, - shadowOpacity: 0.5, + shadowOffset: { width: 3, height: 3 }, + shadowRadius: 3, + shadowOpacity: 0.3, }, android: { - elevation: 2, + elevation: 5, }, }), },