mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-03-03 03:47:02 +00:00
34 lines
1013 B
TypeScript
34 lines
1013 B
TypeScript
import { Stack } from "expo-router";
|
|
import { useColorScheme } from "nativewind";
|
|
import { rawTheme, ThemeName } from "@/lib/colors";
|
|
import { Platform } from "react-native";
|
|
|
|
export default function Layout() {
|
|
const { colorScheme } = useColorScheme();
|
|
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerTitle: "Settings",
|
|
headerLargeTitle: true,
|
|
headerTransparent: Platform.OS === "ios" ? true : false,
|
|
headerShadowVisible: false,
|
|
headerBlurEffect:
|
|
colorScheme === "dark" ? "systemMaterialDark" : "systemMaterial",
|
|
headerTintColor: colorScheme === "dark" ? "white" : "black",
|
|
headerLargeStyle: {
|
|
backgroundColor: rawTheme[colorScheme as ThemeName]["base-100"],
|
|
},
|
|
headerStyle: {
|
|
backgroundColor:
|
|
Platform.OS === "ios"
|
|
? "transparent"
|
|
: colorScheme === "dark"
|
|
? rawTheme["dark"]["base-100"]
|
|
: "white",
|
|
},
|
|
}}
|
|
/>
|
|
);
|
|
}
|