32 lines
869 B
TypeScript
32 lines
869 B
TypeScript
import { Tabs } from "expo-router";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
|
|
export default function TabsLayout() {
|
|
|
|
return (
|
|
<Tabs screenOptions={{ headerShown: false, tabBarActiveTintColor: "#007AFF" }}>
|
|
<Tabs.Screen
|
|
name="home"
|
|
options={{
|
|
title: "Trang chủ",
|
|
tabBarIcon: ({ color, size }) => <Ionicons name="home" color={color} size={size} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="products"
|
|
options={{
|
|
title: "Sản phẩm",
|
|
tabBarIcon: ({ color, size }) => <Ionicons name="pricetags" color={color} size={size} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="account"
|
|
options={{
|
|
title: "Tài khoản",
|
|
tabBarIcon: ({ color, size }) => <Ionicons name="person" color={color} size={size} />,
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|