Cleanup and First Small Changes
This commit is contained in:
parent
739e5e8f08
commit
59696b2caf
18 changed files with 39 additions and 475 deletions
19
app/index.tsx
Normal file
19
app/index.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { Text, StyleSheet } from 'react-native';
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<Text style={styles.lightThemeText}>Home Page</Text>
|
||||
|
||||
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
lightThemeText: {
|
||||
color: "#242c40"
|
||||
},
|
||||
darkThemeText: {
|
||||
color: "#d0d0c0"
|
||||
}
|
||||
});
|
||||
Reference in a new issue