@@ -48,8 +48,8 @@ import RandomPassword from '@screens/Try/RandomPassword'
4848import YourAge from '@screens/Try/YourAge'
4949import Update , { type UpdateParamList } from '@screens/Update/Update'
5050import 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'
5353import Login from '@screens/auth/Login'
5454import Signup from '@screens/auth/Signup'
5555import Verify , { type VerifyParamList } from '@screens/auth/Verify'
@@ -63,6 +63,28 @@ import { Dimensions, SafeAreaView, useColorScheme } from 'react-native'
6363import { GestureHandlerRootView } from 'react-native-gesture-handler'
6464import Animated , { ZoomIn , ZoomOut } from 'react-native-reanimated'
6565import './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'
6688
6789function App ( ) : React . JSX . Element {
6890 const scheme = useColorScheme ( )
@@ -128,47 +150,46 @@ function Navigation() {
128150 < Stack . Screen name = 'AllUsers' component = { AllUsers } options = { GestureEnabled } />
129151 < Stack . Screen name = 'Skia' component = { Skia } options = { GestureEnabled } />
130152 { /* <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 } />
143164 { /* <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 } />
149170 < Stack . Screen name = 'Greeting' component = { Greeting } options = { IOS_BOTTOM_STYLE } />
150171 < Stack . Screen name = 'Settings' component = { Settings } options = { GestureEnabled } />
151172 < Stack . Screen name = 'EditVersion' component = { EditVersion } options = { GestureEnabled } />
152173 < Stack . Screen name = 'Explore' component = { Explore } />
153174 < Stack . Screen name = 'RoutineWelcome' component = { RoutineWelcome } options = { IOS_BOTTOM_STYLE } />
154175 < Stack . Screen name = 'NotesWelcome' component = { NotesWelcome } options = { IOS_BOTTOM_STYLE } />
155176 < 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
158179 name = 'WeatherSettings'
159180 component = { WeatherScienceSettings }
160181 options = { { gestureEnabled : true , freezeOnBlur : true } }
161- /> */ }
182+ />
162183 < Stack . Screen name = 'DeveloperOptions' component = { DeveloperOptions } options = { GestureEnabled } />
163184 < Stack . Screen name = 'UiAndComponents' component = { UiAndComponents } options = { GestureEnabled } />
164185 < Stack . Screen name = 'BlankSettings' component = { BlankSettings } options = { GestureEnabled } />
165186 < Stack . Screen name = 'MMKVDataList' component = { MMKVDataList } options = { GestureEnabled } />
166187 < 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 } />
172193 < Stack . Screen name = 'ManageStorage' component = { ManageStorage } options = { GestureEnabled } />
173194 < Stack . Screen name = 'BackupAndRestore' component = { BackupAndRestore } options = { GestureEnabled } />
174195 < Stack . Screen name = 'About' component = { About } options = { GestureEnabled } />
@@ -179,7 +200,6 @@ function Navigation() {
179200 < Stack . Screen name = 'RandomPassword' component = { RandomPassword } options = { GestureEnabled } />
180201 < Stack . Screen name = 'GlobalSearch' component = { GlobalSearch } options = { IOS_BOTTOM_STYLE } />
181202 < Stack . Screen name = 'Update' component = { Update } options = { GestureEnabled } />
182- { /* <Stack.Screen name='ForceUpdate' component={Update} options={GestureEnabled} /> */ }
183203 < Stack . Screen name = 'Devices' component = { Devices } options = { GestureEnabled } />
184204 < Stack . Screen name = 'Device' component = { Device } options = { GestureEnabled } />
185205 < Stack . Screen
0 commit comments