画面整備

This commit is contained in:
harukin-expo-dev-env
2025-01-09 07:13:42 +00:00
parent 54e76a86f3
commit b867a788e2
4 changed files with 217 additions and 24 deletions

View File

@@ -22,6 +22,7 @@ import { SettingTopPage } from "./SettingTopPage";
import { LayoutSettings } from "./LayoutSettings";
import { FavoriteSettings } from "./FavoriteSettings";
import { WidgetSettings } from "./WidgetSettings";
import { NotificationSettings } from "./NotificationSettings";
const Stack = createStackNavigator();
export default function Setting(props) {
@@ -118,6 +119,23 @@ export default function Setting(props) {
/>
)}
</Stack.Screen>
<Stack.Screen
name="NotificationSettings"
options={{
//gestureEnabled: true,
...TransitionPresets.SlideFromRightIOS,
cardOverlayEnabled: true,
headerTransparent: true,
headerShown: false,
}}
>
{(props) => (
<NotificationSettings
{...props}
navigate={navigate}
/>
)}
</Stack.Screen>
<Stack.Screen
name="WidgetSettings"
options={{