theme changes
This commit is contained in:
parent
1771f85ac3
commit
74c0fdb27e
5 changed files with 52 additions and 66 deletions
|
|
@ -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"
|
||||
}
|
||||
});
|
||||
Reference in a new issue