@@ -8,6 +8,8 @@ import { NavigationContainer, useNavigation } from '@react-navigation/native'
8
8
import { CardStyleInterpolators , createStackNavigator , type StackNavigationOptions } from '@react-navigation/stack'
9
9
import ComputerScienceSettings from '@screens/ComputerScience/ComputerScienceSettings'
10
10
import CoordinateNotes from '@screens/CoordinateNotes/CoordinateNotes'
11
+ import NewCoordinateNotes from '@screens/CoordinateNotes/NewCoordinateNotes'
12
+ import Tags from '@screens/CoordinateNotes/Tags'
11
13
import DeveloperOptions from '@screens/DeveloperOptions/DeveloperOptions'
12
14
import MMKVDataEditor , { type MMKVDataEditorParamList } from '@screens/DeveloperOptions/MMKVDataEditor'
13
15
import MMKVDataList from '@screens/DeveloperOptions/MMKVDataList'
@@ -59,7 +61,6 @@ import { Dimensions, SafeAreaView, useColorScheme } from 'react-native'
59
61
import { GestureHandlerRootView } from 'react-native-gesture-handler'
60
62
import Animated , { ZoomIn , ZoomOut } from 'react-native-reanimated'
61
63
import './global.css'
62
- import NewCoordinateNotes from '@screens/CoordinateNotes/NewCoordinateNotes'
63
64
64
65
function App ( ) : React . JSX . Element {
65
66
const scheme = useColorScheme ( )
@@ -98,74 +99,6 @@ const SMOOTH_ANIMATION: StackNavigationOptions = {
98
99
gestureResponseDistance : height ,
99
100
}
100
101
101
- export type RootStackParamList = {
102
- Home : undefined
103
- Location : undefined
104
- Test : undefined
105
- CompassAnimation : undefined
106
- ParallaxWallpaper : undefined
107
- LevelAnimation : undefined
108
- StableWallpaper : undefined
109
- StableBox : undefined
110
- HandlingGesture : undefined
111
- SensorAnimation : undefined
112
- ApplyingModifiers : undefined
113
- CustomizingAnimations : undefined
114
- Basic : undefined
115
- KeyboardAnimation : undefined
116
- // Animations: undefined
117
- DragAnimation : undefined
118
- Weather : undefined
119
- WeatherWelcome : undefined
120
- WeatherSearchCity : SearchCityParamList
121
- WeatherLocation : WeatherLocationParamList
122
- Greeting : undefined
123
- Settings : undefined
124
- Explore : undefined
125
- RoutineWelcome : undefined
126
- NotesWelcome : undefined
127
- ConfirmCity : ConfirmCityParamList
128
- ComputerScienceSettings : undefined
129
- WeatherSettings : undefined
130
- DeveloperOptions : undefined
131
- MMKVDataEditor : MMKVDataEditorParamList
132
- MMKVDataList : undefined
133
- UiAndComponents : undefined
134
- BlankSettings : undefined
135
- TempUnit : undefined
136
- DistanceUnit : undefined
137
- WindSpeedUnit : undefined
138
- AtmPressureUnit : undefined
139
- TimeFormatUnit : undefined
140
- ManageStorage : undefined
141
- BackupAndRestore : undefined
142
- About : undefined
143
- YourProfile : undefined
144
- YourAge : undefined
145
- RandomColor : undefined
146
- AppLock : undefined
147
- RandomPassword : undefined
148
- GlobalSearch : undefined
149
- Update : UpdateParamList
150
- Splash : undefined
151
- Login : undefined
152
- Signup : undefined
153
- Verify : VerifyParamList
154
- Devices : undefined
155
- Device : DeviceParamList
156
- AllUsers : undefined
157
- EditVersion : undefined
158
- Story : undefined
159
- User : UserParamList
160
- FCFS : undefined
161
- SJF : undefined
162
- Chart : ChartParamList
163
- Onboarding : undefined
164
- Skia : undefined
165
- CoordinateNotes : undefined
166
- NewCoordinateNotes : undefined
167
- }
168
-
169
102
const Stack = createStackNavigator < RootStackParamList > ( )
170
103
171
104
const GestureEnabled = { gestureEnabled : true }
@@ -263,12 +196,82 @@ function Navigation() {
263
196
< Stack . Screen name = 'Chart' component = { Chart } options = { IOS_BOTTOM_STYLE } />
264
197
< Stack . Screen name = 'Onboarding' component = { Onboarding } options = { NO_ANIMATION } />
265
198
< Stack . Screen name = 'CoordinateNotes' component = { CoordinateNotes } options = { GestureEnabled } />
266
- < Stack . Screen name = 'NewCoordinateNotes' component = { NewCoordinateNotes } options = { IOS_BOTTOM_STYLE } />
199
+ < Stack . Screen name = 'NewCoordinateNotes' component = { NewCoordinateNotes } options = { GestureEnabled } />
200
+ < Stack . Screen name = 'Tags' component = { Tags } options = { IOS_BOTTOM_STYLE } />
267
201
</ Stack . Navigator >
268
202
</ >
269
203
)
270
204
}
271
205
206
+ export type RootStackParamList = {
207
+ Tags : undefined
208
+ Home : undefined
209
+ Location : undefined
210
+ Test : undefined
211
+ CompassAnimation : undefined
212
+ ParallaxWallpaper : undefined
213
+ LevelAnimation : undefined
214
+ StableWallpaper : undefined
215
+ StableBox : undefined
216
+ HandlingGesture : undefined
217
+ SensorAnimation : undefined
218
+ ApplyingModifiers : undefined
219
+ CustomizingAnimations : undefined
220
+ Basic : undefined
221
+ KeyboardAnimation : undefined
222
+ // Animations: undefined
223
+ DragAnimation : undefined
224
+ Weather : undefined
225
+ WeatherWelcome : undefined
226
+ WeatherSearchCity : SearchCityParamList
227
+ WeatherLocation : WeatherLocationParamList
228
+ Greeting : undefined
229
+ Settings : undefined
230
+ Explore : undefined
231
+ RoutineWelcome : undefined
232
+ NotesWelcome : undefined
233
+ ConfirmCity : ConfirmCityParamList
234
+ ComputerScienceSettings : undefined
235
+ WeatherSettings : undefined
236
+ DeveloperOptions : undefined
237
+ MMKVDataEditor : MMKVDataEditorParamList
238
+ MMKVDataList : undefined
239
+ UiAndComponents : undefined
240
+ BlankSettings : undefined
241
+ TempUnit : undefined
242
+ DistanceUnit : undefined
243
+ WindSpeedUnit : undefined
244
+ AtmPressureUnit : undefined
245
+ TimeFormatUnit : undefined
246
+ ManageStorage : undefined
247
+ BackupAndRestore : undefined
248
+ About : undefined
249
+ YourProfile : undefined
250
+ YourAge : undefined
251
+ RandomColor : undefined
252
+ AppLock : undefined
253
+ RandomPassword : undefined
254
+ GlobalSearch : undefined
255
+ Update : UpdateParamList
256
+ Splash : undefined
257
+ Login : undefined
258
+ Signup : undefined
259
+ Verify : VerifyParamList
260
+ Devices : undefined
261
+ Device : DeviceParamList
262
+ AllUsers : undefined
263
+ EditVersion : undefined
264
+ Story : undefined
265
+ User : UserParamList
266
+ FCFS : undefined
267
+ SJF : undefined
268
+ Chart : ChartParamList
269
+ Onboarding : undefined
270
+ Skia : undefined
271
+ CoordinateNotes : undefined
272
+ NewCoordinateNotes : undefined
273
+ }
274
+
272
275
const FabButton = ( ) => {
273
276
const navigation = useNavigation < StackNav > ( )
274
277
return (
0 commit comments