From f0b2cf9f7e893a7f19a97436132961030f403ec6 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Sat, 18 Apr 2026 12:22:38 +0700 Subject: [PATCH] feat: configure tab navigation - Setup tabs with FinanceTracker theme - Add two tabs: Keuangan and Statistik - Custom tab bar styling --- app/(tabs)/_layout.tsx | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index 54e11d0..fbca4e2 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -1,35 +1,34 @@ import { Tabs } from 'expo-router'; import React from 'react'; -import { HapticTab } from '@/components/haptic-tab'; import { IconSymbol } from '@/components/ui/icon-symbol'; -import { Colors } from '@/constants/theme'; -import { useColorScheme } from '@/hooks/use-color-scheme'; +import { COLORS } from '@/constants/theme'; export default function TabLayout() { - const colorScheme = useColorScheme(); - return ( , }} /> , + title: 'Statistik', + tabBarIcon: ({ color }) => , }} /> ); -} +} \ No newline at end of file