-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resolve conflict in ch-github-actions-setup branch
- Loading branch information
Showing
26 changed files
with
441 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
interface Props {} | ||
|
||
export default function HomeScreen({}: Props) { | ||
return <></>; | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { Text, View } from "@/components/Themed"; | ||
import { LeftArrow } from "@/components/UI/icons"; | ||
import { SvgUri, SvgXml } from "react-native-svg"; | ||
|
||
export default function SetYourFingerPrint() { | ||
return ( | ||
<> | ||
<Text>Set Your Finger Print</Text> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Header from "@/components/UI/Header"; | ||
import { Stack } from "expo-router"; | ||
|
||
export default function AuthLayout() { | ||
return ( | ||
<Stack initialRouteName="SignIn&SignOut/SetYourFingerPrint"> | ||
<Stack.Screen | ||
name="SignIn&SignOut/SetYourFingerPrint" | ||
options={{ | ||
header: () => { | ||
return <Header />; | ||
}, | ||
}} | ||
/> | ||
</Stack> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Text } from "@/components/Themed"; | ||
import { router } from "expo-router"; | ||
import { useEffect } from "react"; | ||
|
||
export default function Index() { | ||
useEffect(() => { | ||
setTimeout(() => { | ||
router.push("/(auth)/SignIn&SignOut/SetYourFingerPrint"); | ||
}, 2000); | ||
}); | ||
|
||
return ( | ||
<> | ||
<Text>Onboarding Screen</Text> | ||
</> | ||
); | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { Text, TextProps } from './Themed'; | ||
import { Text, TextProps } from "./Themed"; | ||
|
||
export function MonoText(props: TextProps) { | ||
return <Text {...props} style={[props.style, { fontFamily: 'SpaceMono' }]} />; | ||
return <Text {...props} style={[props.style]} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { View } from "../Themed"; | ||
|
||
export default function Header() { | ||
return <View style={{}}></View>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Path, Svg } from "react-native-svg"; | ||
|
||
export function LeftArrow({ fillColor }: { fillColor: string }) { | ||
return ( | ||
<Svg width="28" height="28" viewBox="0 0 28 28" fill="none"> | ||
<Path | ||
d="M23.333 14.32C23.333 14.763 23.0038 15.1291 22.5767 15.187L22.458 15.195L4.95801 15.195C4.47476 15.195 4.08301 14.8033 4.08301 14.32C4.08301 13.877 4.41219 13.5109 4.83928 13.453L4.95801 13.445L22.458 13.445C22.9413 13.445 23.333 13.8368 23.333 14.32Z" | ||
fill={fillColor} | ||
/> | ||
<Path | ||
d="M12.634 20.7284C12.9764 21.0694 12.9776 21.6234 12.6367 21.9659C12.3267 22.2772 11.8406 22.3065 11.4975 22.053L11.3992 21.9685L4.34088 14.9405C4.02864 14.6296 4.00024 14.1418 4.25568 13.7988L4.34083 13.7005L11.3992 6.67132C11.7416 6.33032 12.2956 6.33147 12.6366 6.67388C12.9466 6.98517 12.9738 7.47134 12.719 7.81336L12.634 7.91132L6.19867 14.3208L12.634 20.7284Z" | ||
fill={fillColor} | ||
/> | ||
</Svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.