-
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.
* Create folders for each auth route * Fix tsc errors --------- Co-authored-by: Aditya Pawar <[email protected]>
- Loading branch information
1 parent
0e62caf
commit a76755f
Showing
17 changed files
with
233 additions
and
190 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,11 @@ | ||
import { Stack } from 'expo-router'; | ||
|
||
function StackLayout() { | ||
return ( | ||
<Stack> | ||
<Stack.Screen name="index" options={{ headerShown: false }} /> | ||
</Stack> | ||
); | ||
} | ||
|
||
export default StackLayout; |
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,21 @@ | ||
import { StyleSheet } from 'react-native'; | ||
|
||
export default StyleSheet.create({ | ||
input: { | ||
height: 40, | ||
borderColor: 'gray', | ||
borderWidth: 1, | ||
marginTop: 10, | ||
padding: 5, | ||
}, | ||
verticallySpaced: { | ||
paddingTop: 4, | ||
paddingBottom: 4, | ||
alignSelf: 'stretch', | ||
}, | ||
container: { | ||
paddingVertical: 63, | ||
paddingLeft: 43, | ||
paddingRight: 44, | ||
}, | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { Stack } from 'expo-router'; | ||
|
||
function StackLayout() { | ||
return ( | ||
<Stack> | ||
<Stack.Screen name="index" options={{ headerShown: false }} /> | ||
</Stack> | ||
); | ||
} | ||
|
||
export default StackLayout; |
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,36 @@ | ||
import { StyleSheet } from 'react-native'; | ||
|
||
export default StyleSheet.create({ | ||
flex: { | ||
justifyContent: 'space-between', | ||
}, | ||
forgotPassword: { | ||
fontSize: 12, | ||
textDecorationLine: 'underline', | ||
paddingTop: 18, | ||
paddingBottom: 16, | ||
fontWeight: '400', | ||
}, | ||
link: { | ||
fontWeight: '700', | ||
textDecorationLine: 'underline', | ||
}, | ||
redirectText: { | ||
textAlign: 'center', | ||
marginTop: 16, | ||
marginBottom: 64, | ||
}, | ||
title: { | ||
lineHeight: 33, | ||
paddingTop: 64, | ||
marginBottom: 28, | ||
fontSize: 24, | ||
fontWeight: '700', | ||
}, | ||
error: { | ||
color: 'red', | ||
}, | ||
icon: { | ||
paddingRight: 10, | ||
}, | ||
}); |
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 { Stack } from 'expo-router'; | ||
|
||
function StackLayout() { | ||
return ( | ||
<Stack> | ||
<Stack.Screen name="index" options={{ headerShown: false }} /> | ||
</Stack> | ||
); | ||
} | ||
|
||
export default StackLayout; |
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,21 @@ | ||
import { StyleSheet } from 'react-native'; | ||
|
||
export default StyleSheet.create({ | ||
input: { | ||
height: 40, | ||
borderColor: 'gray', | ||
borderWidth: 1, | ||
marginTop: 10, | ||
padding: 5, | ||
}, | ||
verticallySpaced: { | ||
paddingTop: 4, | ||
paddingBottom: 4, | ||
alignSelf: 'stretch', | ||
}, | ||
container: { | ||
paddingVertical: 63, | ||
paddingLeft: 43, | ||
paddingRight: 44, | ||
}, | ||
}); |
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 { Stack } from 'expo-router'; | ||
|
||
function StackLayout() { | ||
return ( | ||
<Stack> | ||
<Stack.Screen name="index" options={{ headerShown: false }} /> | ||
</Stack> | ||
); | ||
} | ||
|
||
export default StackLayout; |
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.