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