From f3c09cb837a6c25d7a32fc7b562b96e1623389c1 Mon Sep 17 00:00:00 2001 From: Mac Date: Tue, 20 May 2025 19:14:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=99=BB=E5=BD=95=E6=8C=89?= =?UTF-8?q?=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/screens/ProfileScreen.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app/screens/ProfileScreen.tsx b/app/screens/ProfileScreen.tsx index 419ec80..83bdc53 100644 --- a/app/screens/ProfileScreen.tsx +++ b/app/screens/ProfileScreen.tsx @@ -293,6 +293,14 @@ export const ProfileScreen = () => { + + {/* Login Button at bottom of screen */} + + {t("login.now")} + @@ -857,4 +865,18 @@ const styles = StyleSheet.create({ fontSize: fontSize(16), fontWeight: "600", }, + fixedLoginButton: { + backgroundColor: "#ff701e", + paddingHorizontal: 30, + paddingVertical: 10, + borderRadius: 20, + position: "absolute", + bottom: 20, + alignSelf: "center", + elevation: 5, + shadowColor: "#000", + shadowOffset: { width: 0, height: 2 }, + shadowOpacity: 0.25, + shadowRadius: 3.84, + }, });