chore: build
Frontend Admin - EAS Build / build (push) Failing after 1h1m17s

This commit is contained in:
2026-06-21 19:37:44 +02:00
parent b73d190574
commit f5de187c82
@@ -93,7 +93,7 @@ function AdminTabs() {
<>
<Tab.Navigator
screenOptions={{
headerStyle: { backgroundColor: colors.secondary },
headerStyle: { backgroundColor: isDark ? colors.secondary : "#ffffff" },
headerTintColor: colors.textWhite,
headerRight: () => (
<View
@@ -157,7 +157,7 @@ function AdminTabs() {
</View>
),
tabBarStyle: {
backgroundColor: colors.secondary,
backgroundColor: isDark ? colors.secondary : "#ffffff",
borderTopColor: colors.border,
borderTopWidth: 1,
},
@@ -339,12 +339,12 @@ function AdminTabs() {
}
export default function AdminNavigator() {
const { colors } = useTheme();
const { colors, isDark } = useTheme();
return (
<Stack.Navigator
screenOptions={{
headerStyle: { backgroundColor: colors.secondary },
headerStyle: { backgroundColor: isDark ? colors.secondary : "#ffffff" },
headerTintColor: colors.textWhite,
}}
>