1
|
import { Center, KeyboardAvoidingView, Text } from "native-base"
|
2
|
import ListView from "../components/listView/ListView"
|
3
|
import SearchForm from "../components/search/SearchForm"
|
4
|
import { Platform } from "react-native"
|
5
|
|
6
|
const SearchPage = () => {
|
7
|
|
8
|
return (
|
9
|
<KeyboardAvoidingView
|
10
|
h={ {
|
11
|
base: "400px",
|
12
|
lg: "auto"
|
13
|
} }
|
14
|
behavior={ Platform.OS === "ios" ? "padding" : "height" }
|
15
|
>
|
16
|
<Center>
|
17
|
<SearchForm/>
|
18
|
<ListView/>
|
19
|
</Center>
|
20
|
</KeyboardAvoidingView>
|
21
|
)
|
22
|
}
|
23
|
|
24
|
export default SearchPage
|