test commit
This commit is contained in:
parent
59696b2caf
commit
04e73d2edb
4 changed files with 100 additions and 13 deletions
|
|
@ -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",
|
||||
}
|
||||
});
|
||||
Reference in a new issue