feat: add about page

This commit is contained in:
2024-09-25 21:40:59 +01:00
parent ba9d0bfed1
commit e5312288d9
4 changed files with 62 additions and 9 deletions

View File

@@ -28,12 +28,14 @@ export default function TabLayout() {
}}
/>
<Tabs.Screen
name="explore"
name="about"
options={{
title: "Explore",
title: "About",
tabBarIcon: ({ color, focused }) => (
<TabBarIcon
name={focused ? "code-slash" : "code-slash-outline"}
name={
focused ? "information-circle" : "information-circle-outline"
}
color={color}
/>
),