mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
import { Redirect, Tabs } from "expo-router"
|
|
import React from "react"
|
|
|
|
import { TabBarIcon } from "@/presentation/react-native/ui/TabBarIcon"
|
|
import { useAuthentication } from "@/presentation/react/contexts/Authentication"
|
|
|
|
const TabLayout: React.FC = () => {
|
|
const { user } = useAuthentication()
|
|
|
|
if (user != null) {
|
|
return <Redirect href="/application/habits/" />
|
|
}
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
headerShown: false,
|
|
}}
|
|
>
|
|
<Tabs.Screen
|
|
name="about"
|
|
options={{
|
|
title: "About",
|
|
tabBarIcon: ({ color }) => {
|
|
return <TabBarIcon name="info" color={color} />
|
|
},
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="login"
|
|
options={{
|
|
title: "Login",
|
|
tabBarIcon: ({ color }) => {
|
|
return <TabBarIcon name="sign-in" color={color} />
|
|
},
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="register"
|
|
options={{
|
|
title: "Register",
|
|
tabBarIcon: ({ color }) => {
|
|
return <TabBarIcon name="user-plus" color={color} />
|
|
},
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
)
|
|
}
|
|
|
|
export default TabLayout
|