modified: files to ios26 ui/ux
This commit is contained in:
34
app/(tabs)/explore/_layout.tsx
Normal file
34
app/(tabs)/explore/_layout.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import { Colors } from "@/constants/colors";
|
||||
import { Stack } from "expo-router";
|
||||
|
||||
export default function ExploreLayout() {
|
||||
return (
|
||||
<Stack
|
||||
screenOptions={{
|
||||
headerStyle: { backgroundColor: Colors.background },
|
||||
headerTintColor: Colors.text,
|
||||
headerTitleStyle: {
|
||||
fontSize: 17,
|
||||
fontWeight: "600",
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Stack.Screen
|
||||
name="index"
|
||||
options={{
|
||||
title: "Durchsuchen",
|
||||
headerLargeTitle: true,
|
||||
headerLargeTitleStyle: {
|
||||
color: Colors.text,
|
||||
fontSize: 28,
|
||||
},
|
||||
headerSearchBarOptions: {
|
||||
placeholder: "Wonach suchst du?",
|
||||
hideWhenScrolling: false,
|
||||
autoCapitalize: "none",
|
||||
},
|
||||
}}
|
||||
/>
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user