Skip to content

Instantly share code, notes, and snippets.

@alperbayram
Last active December 15, 2023 08:42
Show Gist options
  • Save alperbayram/03c89b0986f5d69dbcd49e647e342909 to your computer and use it in GitHub Desktop.
Save alperbayram/03c89b0986f5d69dbcd49e647e342909 to your computer and use it in GitHub Desktop.
//settings/index.tsx
import { View, Text } from "react-native";
import { Link } from "expo-router";
import { styles } from "../../styles/styles";
export default function Page() {
return (
<View style={styles.container}>
<Text style={styles.title}>settings</Text>
<View>
<Text style={styles.subtitle}>app/settings/index.tsx</Text>
</View>
<Link href="/">
<Text style={styles.linktitle}>index</Text>
</Link>
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment