theme changes

This commit is contained in:
Thomas Schleicher 2023-11-30 19:51:32 +01:00
parent 1771f85ac3
commit 74c0fdb27e
5 changed files with 52 additions and 66 deletions

View file

@ -1,10 +1,9 @@
import { StyleSheet } from 'react-native';
import { View, Text } from "../components/themed-components";
import { StyleSheet, View, Text } from 'react-native';
export default function Page() {
return (
<View>
<Text>Home</Text>
<View style={styles.container}>
<Text style={styles.text}>Home</Text>
</View>
);
}
@ -16,6 +15,7 @@ const styles = StyleSheet.create({
justifyContent: "center",
},
text: {
color: "#ffffff",
fontSize: 70,
fontWeight: "bold"
}
});