mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:53:25 +00:00
chore: clean this stuff up too
This commit is contained in:
@@ -3,14 +3,8 @@ import { Text } from "~/components/ui/Text";
|
|||||||
|
|
||||||
export default function AboutScreen() {
|
export default function AboutScreen() {
|
||||||
return (
|
return (
|
||||||
<ScreenLayout
|
<ScreenLayout title="About">
|
||||||
title="About"
|
<Text>About tab</Text>
|
||||||
subtitle="What is movie-web and how content is served?"
|
|
||||||
>
|
|
||||||
<Text>
|
|
||||||
No content is served from movie-web directly and movie web does not host
|
|
||||||
anything.
|
|
||||||
</Text>
|
|
||||||
</ScreenLayout>
|
</ScreenLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@@ -3,11 +3,8 @@ import { Text } from "~/components/ui/Text";
|
|||||||
|
|
||||||
export default function AccountScreen() {
|
export default function AccountScreen() {
|
||||||
return (
|
return (
|
||||||
<ScreenLayout
|
<ScreenLayout title="Account">
|
||||||
title="Account"
|
<Text>Account tab</Text>
|
||||||
subtitle="Manage your movie web account from here"
|
|
||||||
>
|
|
||||||
<Text>Hey Bro! what are you up to?</Text>
|
|
||||||
</ScreenLayout>
|
</ScreenLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@@ -3,8 +3,8 @@ import { Text } from "~/components/ui/Text";
|
|||||||
|
|
||||||
export default function HomeScreen() {
|
export default function HomeScreen() {
|
||||||
return (
|
return (
|
||||||
<ScreenLayout title="Home" subtitle="This is where all magic happens">
|
<ScreenLayout title="Home">
|
||||||
<Text>Movies will be listed here</Text>
|
<Text>Home tab</Text>
|
||||||
</ScreenLayout>
|
</ScreenLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@@ -32,7 +32,6 @@ export default function SearchScreen() {
|
|||||||
<Text className="text-2xl font-bold">Search</Text>
|
<Text className="text-2xl font-bold">Search</Text>
|
||||||
</View>
|
</View>
|
||||||
}
|
}
|
||||||
subtitle="Looking for something?"
|
|
||||||
>
|
>
|
||||||
<Searchbar onSearchChange={handleSearchChange} />
|
<Searchbar onSearchChange={handleSearchChange} />
|
||||||
<View className="flex w-full flex-1 flex-row flex-wrap justify-start">
|
<View className="flex w-full flex-1 flex-row flex-wrap justify-start">
|
||||||
|
@@ -3,8 +3,8 @@ import { Text } from "~/components/ui/Text";
|
|||||||
|
|
||||||
export default function SettingsScreen() {
|
export default function SettingsScreen() {
|
||||||
return (
|
return (
|
||||||
<ScreenLayout title="Settings" subtitle="Need to change something?">
|
<ScreenLayout title="Settings">
|
||||||
<Text>Settings would be listed in here. Coming soon</Text>
|
<Text>Settings tab</Text>
|
||||||
</ScreenLayout>
|
</ScreenLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user