Skip to content

Commit

Permalink
Ch(Github-Actions)Merge branch 'develop' into ch-github-actions-setup
Browse files Browse the repository at this point in the history
  • Loading branch information
23nosurrend committed May 3, 2024
2 parents 3eccc6a + 894b36b commit f9a42b4
Show file tree
Hide file tree
Showing 5 changed files with 552 additions and 75 deletions.
9 changes: 1 addition & 8 deletions app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,25 @@ import { useFonts } from "expo-font";
import { Stack } from "expo-router";
import * as SplashScreen from "expo-splash-screen";

import { useEffect } from "react";
import { useEffect, useState } from "react";

import { useColorScheme } from "@/components/useColorScheme";
import { useColorScheme } from "@/components/useColorScheme";

export {
// Catch any errors thrown by the Layout component.
ErrorBoundary,
} from "expo-router";
} from "expo-router";

export const unstable_settings = {
// Ensure that reloading on `/modal` keeps a back button present.
initialRouteName: "(auth)",
initialRouteName: "(auth)",
};

// Prevent the splash screen from auto-hiding before asset loading is complete.
SplashScreen.preventAutoHideAsync();

export default function RootLayout() {
const [loaded, error] = useFonts({
Medium: require("../assets/fonts/Urbanist-Medium.ttf"),
SemiBold: require("../assets/fonts/Urbanist-SemiBold.ttf"),
Bold: require("../assets/fonts/Urbanist-Bold.ttf"),
Regular: require("../assets/fonts/Urbanist-Regular.ttf"),
Medium: require("../assets/fonts/Urbanist-Medium.ttf"),
SemiBold: require("../assets/fonts/Urbanist-SemiBold.ttf"),
Bold: require("../assets/fonts/Urbanist-Bold.ttf"),
Expand Down
4 changes: 3 additions & 1 deletion app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import { useEffect } from "react";

export default function Index() {
useEffect(() => {
router.push("/(auth)/SignIn&SignOut/SetYourFingerPrint");
setTimeout(() => {
router.push("/(auth)/SignIn&SignOut/SetYourFingerPrint");
}, 2000);
});

return (
Expand Down
1 change: 0 additions & 1 deletion constants/Colors.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const tintColorLight = "#2f95dc";
const tintColorDark = "#fff";


export default {
light: {
text: "#000",
Expand Down
Loading

0 comments on commit f9a42b4

Please sign in to comment.