import React, { useEffect } from "react"; import { Platform } from "react-native"; import * as NavigationBar from "expo-navigation-bar"; import { Tabs } from "expo-router"; import { ClipboardList, Home, Search, Settings } from "lucide-react-native"; export default function TabLayout() { useEffect(() => { if (Platform.OS == "android") { NavigationBar.setBackgroundColorAsync("white"); } }, []); return ( , }} /> , }} /> , }} /> , }} /> ); }