feat(mobile): settings hub with security section + signout
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { Stack } from 'expo-router';
|
||||
|
||||
import { colors } from '../../../theme/colors';
|
||||
|
||||
export default function SettingsLayout() {
|
||||
return (
|
||||
<Stack
|
||||
screenOptions={{
|
||||
headerStyle: { backgroundColor: colors.bg },
|
||||
headerTitleStyle: { color: colors.text },
|
||||
headerTintColor: colors.accent,
|
||||
}}
|
||||
>
|
||||
<Stack.Screen name="index" options={{ title: 'Einstellungen' }} />
|
||||
<Stack.Screen name="security" options={{ title: 'Sicherheit' }} />
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user