Clean up, reimplement native paper, and sign in screen.

This commit is contained in:
Patrick Fic
2025-10-08 08:57:14 -07:00
parent b8261f001e
commit 091606f1ca
20 changed files with 839 additions and 687 deletions

View File

@@ -1,9 +1,10 @@
import { StyleSheet, Text, View } from 'react-native';
import SignOutButton from "@/components-old/sign-out-button/sign-out-button.component";
import { StyleSheet, Text, View } from "react-native";
export default function Tab() {
return (
<View style={styles.container}>
<Text>Tab [Home|Settings]</Text>
<SignOutButton />
</View>
);
}
@@ -11,7 +12,7 @@ export default function Tab() {
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
justifyContent: "center",
alignItems: "center",
},
});