diff --git a/app/(auth)/(tabs)/_layout.tsx b/app/(auth)/(tabs)/_layout.tsx
index 155158d9..85846a7b 100644
--- a/app/(auth)/(tabs)/_layout.tsx
+++ b/app/(auth)/(tabs)/_layout.tsx
@@ -6,6 +6,8 @@ import { Colors } from "@/constants/Colors";
import { Platform, TouchableOpacity, View } from "react-native";
import { Feather } from "@expo/vector-icons";
import { Chromecast } from "@/components/Chromecast";
+import { BlurView } from "expo-blur";
+import { StyleSheet } from "react-native";
export default function TabLayout() {
useEffect(() => {
@@ -21,6 +23,27 @@ export default function TabLayout() {
screenOptions={{
tabBarActiveTintColor: Colors.tabIconSelected,
headerShown: false,
+ tabBarStyle: {
+ position: "absolute",
+ borderTopLeftRadius: 0,
+ borderTopRightRadius: 0,
+ borderTopWidth: 0,
+ paddingTop: 8,
+ },
+ tabBarBackground: () =>
+ Platform.OS === "ios" ? (
+
+ ) : undefined,
}}
>
diff --git a/app/(auth)/(tabs)/home/_layout.tsx b/app/(auth)/(tabs)/home/_layout.tsx
index dbe6fe21..94a68602 100644
--- a/app/(auth)/(tabs)/home/_layout.tsx
+++ b/app/(auth)/(tabs)/home/_layout.tsx
@@ -14,7 +14,9 @@ export default function IndexLayout() {
headerShown: true,
headerLargeTitle: true,
headerTitle: "Home",
- headerStyle: { backgroundColor: "black" },
+ headerBlurEffect: "prominent",
+ headerTransparent: Platform.OS === "ios" ? true : false,
+ headerShadowVisible: false,
headerLeft: () => (