Cleanup and First Small Changes

This commit is contained in:
thschleicher 2023-11-30 09:26:00 +01:00
parent 739e5e8f08
commit 59696b2caf
18 changed files with 39 additions and 475 deletions

19
app/index.tsx Normal file
View 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"
}
});