-
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.
Showing
17 changed files
with
181 additions
and
480 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 |
---|---|---|
@@ -1,17 +1,31 @@ | ||
import { StyleSheet } from "react-native"; | ||
import CameraComponent from "../../components/CameraComponent"; | ||
import { View } from "../../components/Themed"; | ||
|
||
export default function TabTwoScreen() { | ||
import EditScreenInfo from "../../components/EditScreenInfo"; | ||
import { Text, View } from "../../components/Themed"; | ||
|
||
export default function TabTwoScreen () { | ||
return ( | ||
<View style={styles.container}> | ||
<CameraComponent/> | ||
<Text style={styles.title}>Tab Two</Text> | ||
<View style={styles.separator} lightColor="#eee" darkColor="rgba(255,255,255,0.1)" /> | ||
<EditScreenInfo path="app/(tabs)/two.tsx" /> | ||
</View> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
alignItems: "center", | ||
flex: 1, | ||
justifyContent: "center" | ||
}, | ||
separator: { | ||
height: 1, | ||
marginVertical: 30, | ||
width: "80%" | ||
}, | ||
title: { | ||
fontSize: 20, | ||
fontWeight: "bold" | ||
} | ||
}); |
Binary file not shown.
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,10 +1,10 @@ | ||
module.exports = function (api) { | ||
api.cache(true); | ||
return { | ||
presets: ["babel-preset-expo"], | ||
plugins: [ | ||
// Required for expo-router | ||
"expo-router/babel", | ||
], | ||
}; | ||
api.cache(true); | ||
return { | ||
presets: ['babel-preset-expo'], | ||
plugins: [ | ||
// Required for expo-router | ||
'expo-router/babel', | ||
], | ||
}; | ||
}; |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.