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/(tabs)/budget/index.tsx
Thomas Schleicher 5a9b76a3ff Resolve "Budget"
2023-12-20 18:36:43 +00:00

28 lines
No EOL
676 B
TypeScript

import { SafeAreaView, StyleSheet, Switch, Text } from 'react-native';
export default function Page() {
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
switch: {
transform: [{ scaleX: 1.3 }, { scaleY: 1.3 }],
},
text: {
color: "red",
fontSize: 40,
}
});
// const {data, isLoading, reFetch} = useFetch();
return (
<SafeAreaView>
<Text style={styles.text}>Hallo wo bin ich?!</Text>
<Switch style={styles.switch}/>
</SafeAreaView>
);
}