This commit is contained in:
Philip Cesar Garay
2025-08-12 21:03:49 +08:00
parent 5a521d2f3d
commit 7d8942e125
49 changed files with 1002 additions and 122 deletions
+2 -1
View File
@@ -29,6 +29,7 @@ import {
import useLayoutType from "../hooks/useLayoutType.js";
import { capitalize } from "../helpers/index.js";
import { navigate } from "../navigation/NavigationService.js";
export default ({ navigation }) => {
console.log("LOGINSCREEN");
@@ -292,7 +293,7 @@ export default ({ navigation }) => {
<Button
{...(mode === "LOGIN"
? { text: "Connexion", onPress: onLogin }
? { text: "Connexion", onPress: () => navigate(Routes.BottomTab) }
: {
text: "Inscription",
onPress: onSignup,