19 lines
499 B
TypeScript
19 lines
499 B
TypeScript
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>
|
|
);
|
|
}
|