Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions frontend/app/(auth)/(tabs)/_layout.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import FilledBellIcon from '@/app/components/icons/FilledBellIcon';
import FilledChatIcon from '@/app/components/icons/FilledChatIcon';
import FilledHeartIcon from '@/app/components/icons/FilledHeartIcon';
import FilledHomeIcon from '@/app/components/icons/FilledHomeIcon';
import FilledProfileIcon from '@/app/components/icons/FilledProfileIcon';
import { useNotifications } from '@/app/contexts/NotificationsContext';
import { useHapticFeedback } from '@/app/hooks/useHapticFeedback';
import { Tabs } from 'expo-router';
import { Bell, Heart, MessageCircle, User } from 'lucide-react-native';
import { Bell, Home, MessageCircle, User } from 'lucide-react-native';
import { useRef } from 'react';
import { Animated, Pressable } from 'react-native';
import { AppColors } from '../../components/AppColors';
Expand Down Expand Up @@ -90,12 +90,12 @@ export default function TabLayout() {
<Tabs.Screen
name="index"
options={{
title: 'Matches',
title: 'Home',
tabBarIcon: ({ color, size, focused }) =>
focused ? (
<FilledHeartIcon size={size} color={color} />
<FilledHomeIcon size={size} color={color} />
) : (
<Heart size={size} color={color} />
<Home size={size} color={color} />
),
tabBarButton: (props) => <AnimatedTabButton {...props} />,
}}
Expand Down
Loading
Loading