import { BlurView } from "expo-blur";
import { isLiquidGlassAvailable } from "expo-glass-effect";
import { Tabs } from "expo-router";
import { Icon, Label, NativeTabs } from "expo-router/unstable-native-tabs";
import { SymbolView } from "expo-symbols";
import { Feather, MaterialCommunityIcons } from "@expo/vector-icons";
import React from "react";
import { Platform, StyleSheet, View, useColorScheme } from "react-native";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { Colors } from "@/constants/colors";
function NativeTabLayout() {
return (
);
}
function ClassicTabLayout() {
const insets = useSafeAreaInsets();
const isIOS = Platform.OS === "ios";
const isWeb = Platform.OS === "web";
const C = Colors.dark;
return (
isIOS ? (
) : isWeb ? (
) : (
),
}}
>
isIOS ? (
) : (
),
}}
/>
isIOS ? (
) : (
),
}}
/>
isIOS ? (
) : (
),
}}
/>
);
}
export default function TabLayout() {
if (isLiquidGlassAvailable()) {
return ;
}
return ;
}