44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { Tabs } from 'expo-router';
|
|
import React from 'react';
|
|
import { Platform } from 'react-native';
|
|
|
|
import Ionicons from '@expo/vector-icons/Ionicons';
|
|
import { HapticTab } from '../../components/HapticTab';
|
|
import TabBarBackground from '../../components/ui/TabBarBackground';
|
|
|
|
export default function TabLayout() {
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
tabBarActiveTintColor: "#fff",
|
|
tabBarActiveBackgroundColor: "#6a254fff",
|
|
headerShown: false,
|
|
tabBarButton: HapticTab,
|
|
tabBarBackground: TabBarBackground,
|
|
tabBarStyle: Platform.select({
|
|
ios: {
|
|
// Use a transparent background on iOS to show the blur effect
|
|
position: 'absolute',
|
|
},
|
|
default: {},
|
|
}),
|
|
}}>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: 'Tasks',
|
|
tabBarIcon: ({ color }) => <Ionicons size={28} name="document-text-outline" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="categories"
|
|
options={{
|
|
title: 'Categories',
|
|
tabBarIcon: ({ color }) => <Ionicons size={28} name="albums-outline" color={color} />,
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|