@@ -48,8 +48,8 @@ import RandomPassword from '@screens/Try/RandomPassword'
48
48
import YourAge from '@screens/Try/YourAge'
49
49
import Update , { type UpdateParamList } from '@screens/Update/Update'
50
50
import type { ConfirmCityParamList } from '@screens/Weather/ConfirmCity'
51
- import { type WeatherLocationParamList } from '@screens/Weather/WeatherLocation'
52
- import { type SearchCityParamList } from '@screens/Weather/WeatherSearchCity'
51
+ import WeatherLocation , { type WeatherLocationParamList } from '@screens/Weather/WeatherLocation'
52
+ import WeatherSearchCity , { type SearchCityParamList } from '@screens/Weather/WeatherSearchCity'
53
53
import Login from '@screens/auth/Login'
54
54
import Signup from '@screens/auth/Signup'
55
55
import Verify , { type VerifyParamList } from '@screens/auth/Verify'
@@ -63,6 +63,28 @@ import { Dimensions, SafeAreaView, useColorScheme } from 'react-native'
63
63
import { GestureHandlerRootView } from 'react-native-gesture-handler'
64
64
import Animated , { ZoomIn , ZoomOut } from 'react-native-reanimated'
65
65
import './global.css'
66
+ import Animations from '@screens/Animations'
67
+ import ConfirmCity from '@screens/Weather/ConfirmCity'
68
+ import WeatherScreen from '@screens/Weather/Main/Weather'
69
+ import AtmPressureUnit from '@screens/Weather/Settings/AtmPressureUnit'
70
+ import DistanceUnit from '@screens/Weather/Settings/DistanceUnit'
71
+ import TempUnit from '@screens/Weather/Settings/TempUnit'
72
+ import TimeFormatUnit from '@screens/Weather/Settings/TimeFormatUnit'
73
+ import WeatherScienceSettings from '@screens/Weather/Settings/WeatherSettings'
74
+ import WindSpeedUnit from '@screens/Weather/Settings/WindSpeedUnit'
75
+ import WeatherWelcome from '@screens/Weather/WeatherWelcome'
76
+ import ApplyingModifiers from '@screens/animations/ApplyingModifiers'
77
+ import Basic from '@screens/animations/Basic'
78
+ import CompassAnimation from '@screens/animations/CompassAnimation'
79
+ import CustomizingAnimations from '@screens/animations/CustomizingAnimations'
80
+ import DragAnimation from '@screens/animations/DragAnimation'
81
+ import HandlingGesture from '@screens/animations/HandlingGesture'
82
+ import KeyboardAnimation from '@screens/animations/KeyboardAnimation'
83
+ import LevelAnimation from '@screens/animations/LevelAnimation'
84
+ import ParallaxWallpaper from '@screens/animations/ParallaxWallpaper'
85
+ import SensorAnimation from '@screens/animations/SensorAnimation'
86
+ import StableBox from '@screens/animations/StableBox'
87
+ import StableWallpaper from '@screens/animations/StableWallpaper'
66
88
67
89
function App ( ) : React . JSX . Element {
68
90
const scheme = useColorScheme ( )
@@ -128,47 +150,46 @@ function Navigation() {
128
150
< Stack . Screen name = 'AllUsers' component = { AllUsers } options = { GestureEnabled } />
129
151
< Stack . Screen name = 'Skia' component = { Skia } options = { GestureEnabled } />
130
152
{ /* <Stack.Screen name='Location' component={Location} /> */ }
131
- { /* <Stack.Screen name='CompassAnimation' component={CompassAnimation} /> */ }
132
- { /* <Stack.Screen name='ParallaxWallpaper' component={ParallaxWallpaper} /> */ }
133
- { /* <Stack.Screen name='LevelAnimation' component={LevelAnimation} /> */ }
134
- { /* <Stack.Screen name='StableWallpaper' component={StableWallpaper} /> */ }
135
- { /* <Stack.Screen name='StableBox' component={StableBox} /> */ }
136
- { /* <Stack.Screen name='HandlingGesture' component={HandlingGesture} /> */ }
137
- { /* <Stack.Screen name='SensorAnimation' component={SensorAnimation} /> */ }
138
- { /* <Stack.Screen name='ApplyingModifiers' component={ApplyingModifiers} /> */ }
139
- { /* <Stack.Screen name='CustomizingAnimations' component={CustomizingAnimations} /> */ }
140
- { /* <Stack.Screen name='Basic' component={Basic} /> */ }
141
- { /* <Stack.Screen name='Basic' component={Basic} /> */ }
142
- { /* <Stack.Screen name='KeyboardAnimation' component={KeyboardAnimation} /> */ }
153
+ < Stack . Screen name = 'CompassAnimation' component = { CompassAnimation } />
154
+ < Stack . Screen name = 'ParallaxWallpaper' component = { ParallaxWallpaper } />
155
+ < Stack . Screen name = 'LevelAnimation' component = { LevelAnimation } />
156
+ < Stack . Screen name = 'StableWallpaper' component = { StableWallpaper } />
157
+ < Stack . Screen name = 'StableBox' component = { StableBox } />
158
+ < Stack . Screen name = 'HandlingGesture' component = { HandlingGesture } />
159
+ < Stack . Screen name = 'SensorAnimation' component = { SensorAnimation } />
160
+ < Stack . Screen name = 'ApplyingModifiers' component = { ApplyingModifiers } />
161
+ < Stack . Screen name = 'CustomizingAnimations' component = { CustomizingAnimations } />
162
+ < Stack . Screen name = 'Basic' component = { Basic } />
163
+ < Stack . Screen name = 'KeyboardAnimation' component = { KeyboardAnimation } />
143
164
{ /* <Stack.Screen name='Animations' component={Animations} /> */ }
144
- { /* <Stack.Screen name='DragAnimation' component={DragAnimation} /> */ }
145
- { /* <Stack.Screen name='Weather' component={WeatherScreen} options={GestureEnabled} /> */ }
146
- { /* <Stack.Screen name='WeatherWelcome' component={WeatherWelcome} options={IOS_BOTTOM_STYLE} /> */ }
147
- { /* <Stack.Screen name='WeatherSearchCity' component={WeatherSearchCity} options={IOS_BOTTOM_STYLE} /> */ }
148
- { /* <Stack.Screen name='WeatherLocation' component={WeatherLocation} options={IOS_BOTTOM_STYLE} /> */ }
165
+ < Stack . Screen name = 'DragAnimation' component = { DragAnimation } />
166
+ < Stack . Screen name = 'Weather' component = { WeatherScreen } options = { GestureEnabled } />
167
+ < Stack . Screen name = 'WeatherWelcome' component = { WeatherWelcome } options = { IOS_BOTTOM_STYLE } />
168
+ < Stack . Screen name = 'WeatherSearchCity' component = { WeatherSearchCity } options = { IOS_BOTTOM_STYLE } />
169
+ < Stack . Screen name = 'WeatherLocation' component = { WeatherLocation } options = { IOS_BOTTOM_STYLE } />
149
170
< Stack . Screen name = 'Greeting' component = { Greeting } options = { IOS_BOTTOM_STYLE } />
150
171
< Stack . Screen name = 'Settings' component = { Settings } options = { GestureEnabled } />
151
172
< Stack . Screen name = 'EditVersion' component = { EditVersion } options = { GestureEnabled } />
152
173
< Stack . Screen name = 'Explore' component = { Explore } />
153
174
< Stack . Screen name = 'RoutineWelcome' component = { RoutineWelcome } options = { IOS_BOTTOM_STYLE } />
154
175
< Stack . Screen name = 'NotesWelcome' component = { NotesWelcome } options = { IOS_BOTTOM_STYLE } />
155
176
< Stack . Screen name = 'ComputerScienceSettings' component = { ComputerScienceSettings } options = { GestureEnabled } />
156
- { /* <Stack.Screen name='ConfirmCity' component={ConfirmCity} options={IOS_BOTTOM_STYLE} /> */ }
157
- { /* <Stack.Screen
177
+ < Stack . Screen name = 'ConfirmCity' component = { ConfirmCity } options = { IOS_BOTTOM_STYLE } />
178
+ < Stack . Screen
158
179
name = 'WeatherSettings'
159
180
component = { WeatherScienceSettings }
160
181
options = { { gestureEnabled : true , freezeOnBlur : true } }
161
- /> */ }
182
+ />
162
183
< Stack . Screen name = 'DeveloperOptions' component = { DeveloperOptions } options = { GestureEnabled } />
163
184
< Stack . Screen name = 'UiAndComponents' component = { UiAndComponents } options = { GestureEnabled } />
164
185
< Stack . Screen name = 'BlankSettings' component = { BlankSettings } options = { GestureEnabled } />
165
186
< Stack . Screen name = 'MMKVDataList' component = { MMKVDataList } options = { GestureEnabled } />
166
187
< Stack . Screen name = 'MMKVDataEditor' component = { MMKVDataEditor } options = { GestureEnabled } />
167
- { /* <Stack.Screen name='TempUnit' component={TempUnit} options={GestureEnabled} /> */ }
168
- { /* <Stack.Screen name='DistanceUnit' component={DistanceUnit} options={GestureEnabled} /> */ }
169
- { /* <Stack.Screen name='WindSpeedUnit' component={WindSpeedUnit} options={GestureEnabled} /> */ }
170
- { /* <Stack.Screen name='AtmPressureUnit' component={AtmPressureUnit} options={GestureEnabled} /> */ }
171
- { /* <Stack.Screen name='TimeFormatUnit' component={TimeFormatUnit} options={GestureEnabled} /> */ }
188
+ < Stack . Screen name = 'TempUnit' component = { TempUnit } options = { GestureEnabled } />
189
+ < Stack . Screen name = 'DistanceUnit' component = { DistanceUnit } options = { GestureEnabled } />
190
+ < Stack . Screen name = 'WindSpeedUnit' component = { WindSpeedUnit } options = { GestureEnabled } />
191
+ < Stack . Screen name = 'AtmPressureUnit' component = { AtmPressureUnit } options = { GestureEnabled } />
192
+ < Stack . Screen name = 'TimeFormatUnit' component = { TimeFormatUnit } options = { GestureEnabled } />
172
193
< Stack . Screen name = 'ManageStorage' component = { ManageStorage } options = { GestureEnabled } />
173
194
< Stack . Screen name = 'BackupAndRestore' component = { BackupAndRestore } options = { GestureEnabled } />
174
195
< Stack . Screen name = 'About' component = { About } options = { GestureEnabled } />
@@ -179,7 +200,6 @@ function Navigation() {
179
200
< Stack . Screen name = 'RandomPassword' component = { RandomPassword } options = { GestureEnabled } />
180
201
< Stack . Screen name = 'GlobalSearch' component = { GlobalSearch } options = { IOS_BOTTOM_STYLE } />
181
202
< Stack . Screen name = 'Update' component = { Update } options = { GestureEnabled } />
182
- { /* <Stack.Screen name='ForceUpdate' component={Update} options={GestureEnabled} /> */ }
183
203
< Stack . Screen name = 'Devices' component = { Devices } options = { GestureEnabled } />
184
204
< Stack . Screen name = 'Device' component = { Device } options = { GestureEnabled } />
185
205
< Stack . Screen
0 commit comments