This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
interaktive-systeme/app/index.tsx
Thomas Schleicher 74c0fdb27e theme changes
2023-11-30 19:51:36 +01:00

21 lines
No EOL
432 B
TypeScript

import { StyleSheet, View, Text } from 'react-native';
export default function Page() {
return (
<View style={styles.container}>
<Text style={styles.text}>Home</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: "center",
justifyContent: "center",
},
text: {
fontSize: 70,
fontWeight: "bold"
}
});