This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathApp.tsx
125 lines (113 loc) · 3.2 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import React, { useState } from "react";
import { View, Text, Platform, StyleSheet } from "react-native";
import {
NavigationContainer,
useNavigation,
RouteProp,
} from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { RectButton, BorderlessButton } from "react-native-gesture-handler";
import SearchLayout from "react-navigation-addon-search-layout";
import { Ionicons } from "@expo/vector-icons";
import { StatusBar } from "expo-status-bar";
type RootStackParamList = {
Home: undefined;
Search: undefined;
Result: { text: string };
};
type ResultScreenRouteProp = RouteProp<RootStackParamList, "Result">;
function HomeScreen() {
return (
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<Text>Hello there!!!</Text>
</View>
);
}
function SearchScreen() {
const [searchText, setSearchText] = useState("");
const navigation = useNavigation();
const _handleQueryChange = (searchText: string) => {
setSearchText(searchText);
};
const _executeSearch = () => {
alert("do search!");
};
return (
<SearchLayout onChangeQuery={_handleQueryChange} onSubmit={_executeSearch}>
{searchText ? (
<RectButton
style={{
borderBottomWidth: StyleSheet.hairlineWidth,
borderBottomColor: "#eee",
paddingVertical: 20,
paddingHorizontal: 15,
}}
onPress={() =>
navigation.navigate("Result", {
text: searchText,
})
}
>
<Text style={{ fontSize: 14 }}>{searchText}!</Text>
</RectButton>
) : null}
</SearchLayout>
);
}
function ResultScreen(props: ResultScreenRouteProp) {
return (
<View style={styles.container}>
<Text>{props.params.text} result!</Text>
</View>
);
}
const Stack = createStackNavigator();
export default function App() {
return (
<>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Home"
component={HomeScreen}
options={{
headerRight: (props) => {
const navigation = useNavigation();
return (
<BorderlessButton
onPress={() => navigation.navigate("Search")}
style={{ marginRight: 15 }}
>
<Ionicons
name="md-search"
size={Platform.OS === "ios" ? 22 : 25}
color={SearchLayout.DefaultTintColor}
/>
</BorderlessButton>
);
},
}}
/>
<Stack.Screen
name="Search"
component={SearchScreen}
options={{
headerShown: false,
gestureEnabled: false,
animationEnabled: false,
}}
/>
<Stack.Screen name="Result" component={ResultScreen} />
</Stack.Navigator>
</NavigationContainer>
<StatusBar style="dark" />
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
},
});