mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:43:25 +00:00
chore: make this a useful placeholder tab
This commit is contained in:
@@ -43,11 +43,11 @@ export default function TabLayout() {
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Tabs.Screen
|
<Tabs.Screen
|
||||||
name="about"
|
name="downloads"
|
||||||
options={{
|
options={{
|
||||||
title: "About",
|
title: "Downloads",
|
||||||
tabBarIcon: ({ focused }) => (
|
tabBarIcon: ({ focused }) => (
|
||||||
<TabBarIcon name="info-circle" focused={focused} />
|
<TabBarIcon name="download" focused={focused} />
|
||||||
),
|
),
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
import ScreenLayout from "~/components/layout/ScreenLayout";
|
import ScreenLayout from "~/components/layout/ScreenLayout";
|
||||||
import { Text } from "~/components/ui/Text";
|
import { Text } from "~/components/ui/Text";
|
||||||
|
|
||||||
export default function AboutScreen() {
|
export default function DownloadsScreen() {
|
||||||
return (
|
return (
|
||||||
<ScreenLayout title="About">
|
<ScreenLayout title="Downloads">
|
||||||
<Text>About tab</Text>
|
<Text>Downloads tab</Text>
|
||||||
</ScreenLayout>
|
</ScreenLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
Reference in New Issue
Block a user