領域を仮作成

This commit is contained in:
harukin-expo-dev-env
2024-03-28 13:37:17 +00:00
parent aa7c57a848
commit d55a62b8ae
4 changed files with 221 additions and 7 deletions

View File

@@ -20,6 +20,7 @@ import { Switch } from "react-native-elements";
import AutoHeightImage from "react-native-auto-height-image";
import { SettingTopPage } from "./SettingTopPage";
import { LayoutSettings } from "./LayoutSettings";
import { WidgetSettings } from "./WidgetSettings";
const Stack = createStackNavigator();
export default function Setting(props) {
@@ -123,6 +124,18 @@ export default function Setting(props) {
/>
)}
</Stack.Screen>
<Stack.Screen
name="WidgetSettings"
options={{
gestureEnabled: true,
...TransitionPresets.SlideFromRightIOS,
cardOverlayEnabled: true,
headerTransparent: true,
headerShown: false,
}}
>
{(props) => <WidgetSettings {...props} navigate={navigate} />}
</Stack.Screen>
</Stack.Navigator>
);
}