chore: make this a useful placeholder tab

This commit is contained in:
Adrian Castro
2024-02-14 22:56:39 +01:00
parent 8da4ad579c
commit 6ecf3f5841
2 changed files with 6 additions and 6 deletions

View File

@@ -43,11 +43,11 @@ export default function TabLayout() {
}}
/>
<Tabs.Screen
name="about"
name="downloads"
options={{
title: "About",
title: "Downloads",
tabBarIcon: ({ focused }) => (
<TabBarIcon name="info-circle" focused={focused} />
<TabBarIcon name="download" focused={focused} />
),
}}
/>

View File

@@ -1,10 +1,10 @@
import ScreenLayout from "~/components/layout/ScreenLayout";
import { Text } from "~/components/ui/Text";
export default function AboutScreen() {
export default function DownloadsScreen() {
return (
<ScreenLayout title="About">
<Text>About tab</Text>
<ScreenLayout title="Downloads">
<Text>Downloads tab</Text>
</ScreenLayout>
);
}