test commit

This commit is contained in:
Thomas Schleicher 2023-11-30 13:59:43 +01:00
parent 59696b2caf
commit 04e73d2edb
4 changed files with 100 additions and 13 deletions

View file

@ -1,19 +1,21 @@
import { Text, StyleSheet } from 'react-native';
import { StyleSheet } from 'react-native';
import { View, Text } from "../components/themed-components";
export default function Page() {
return (
<Text style={styles.lightThemeText}>Home Page</Text>
<View>
<Text>Home</Text>
</View>
);
}
const styles = StyleSheet.create({
lightThemeText: {
color: "#242c40"
container: {
flex: 1,
alignItems: "center",
justifyContent: "center",
},
darkThemeText: {
color: "#d0d0c0"
text: {
color: "#ffffff",
}
});