-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1183 from The-Commit-Company/mobile-auth
chore(mobile): consolidated all auth utils
- Loading branch information
Showing
11 changed files
with
234 additions
and
52 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
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
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,12 @@ | ||
import { Stack } from 'expo-router'; | ||
import FullPageLoader from '@components/layout/FullPageLoader'; | ||
|
||
export default function InitialScreen() { | ||
|
||
return ( | ||
<> | ||
<Stack.Screen options={{ title: 'Raven' }} /> | ||
<FullPageLoader /> | ||
</> | ||
); | ||
} |
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
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,19 @@ | ||
import { Text } from '@components/nativewindui/Text' | ||
import React from 'react' | ||
import { View } from 'react-native' | ||
|
||
type Props = { | ||
title?: string | ||
description?: string | ||
} | ||
|
||
const FullPageLoader = ({ title = 'raven', description = 'Setting up your workspace...' }: Props) => { | ||
return ( | ||
<View className="flex-1 justify-center items-center gap-2"> | ||
<Text className="text-4xl font-bold font-cal-sans">{title}</Text> | ||
<Text className='text-muted-foreground'>{description}</Text> | ||
</View> | ||
) | ||
} | ||
|
||
export default FullPageLoader |
Oops, something went wrong.