Projekt

Obecné

Profil

Stáhnout (628 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 9c55d3bb Schwobik
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 b7014ba2 Schwobik
6
const SearchPage = () => {
7
8
    return (
9 9c55d3bb Schwobik
        <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 b7014ba2 Schwobik
    )
22
}
23
24
export default SearchPage