mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 08:03:26 +00:00
36 lines
1009 B
TypeScript
36 lines
1009 B
TypeScript
import { ScrollView, View } from 'react-native';
|
|
|
|
import Item from '@/components/item/item';
|
|
import ScreenLayout from '@/components/layout/ScreenLayout';
|
|
import { Text } from '@/components/ui/Text';
|
|
|
|
import Searchbar from './Searchbar';
|
|
|
|
export default function SearchScreen() {
|
|
return (
|
|
<ScrollView>
|
|
<ScreenLayout
|
|
title={
|
|
<View className="flex-row items-center">
|
|
<Text className="text-2xl font-bold text-white">Search</Text>
|
|
</View>
|
|
}
|
|
subtitle="Looking for something?"
|
|
>
|
|
<Searchbar />
|
|
<View className="flex w-full flex-1 flex-row flex-wrap justify-start">
|
|
<View className="basis-1/2 px-3 pb-3">
|
|
<Item />
|
|
</View>
|
|
<View className="basis-1/2 px-3 pb-3">
|
|
<Item />
|
|
</View>
|
|
<View className="basis-1/2 px-3 pb-3">
|
|
<Item />
|
|
</View>
|
|
</View>
|
|
</ScreenLayout>
|
|
</ScrollView>
|
|
);
|
|
}
|