Files
fressh/apps/mobile/src/app/settings.tsx
EthanShoeDev a9fc8dee46 changes
2025-09-15 03:29:49 -04:00

29 lines
647 B
TypeScript

import { Link } from 'expo-router';
import { View, Text, StyleSheet } from 'react-native';
export default function Tab() {
return (
<View style={styles.container}>
<Text style={{ color: '#E5E7EB', marginBottom: 12 }}>Settings</Text>
<Link
href="/(shared)/key-manager"
style={{ color: '#60A5FA', marginBottom: 8 }}
>
Manage Keys
</Link>
<Link href="/(modals)/key-manager?select=1" style={{ color: '#60A5FA' }}>
Open Key Picker (modal)
</Link>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#0B1324',
},
});