投稿機能へのウィンドウを作成

This commit is contained in:
harukin-expo-dev-env
2025-06-15 05:20:11 +00:00
parent 8e7ccba5cc
commit c92f02fa0e
4 changed files with 44 additions and 3 deletions

View File

@@ -18,6 +18,7 @@ import AllTrainDiagramView from "./components/AllTrainDiagramView";
import { useNavigation } from "@react-navigation/native";
import { news } from "./config/newsUpdate";
import { useBottomTabBarHeight } from "@react-navigation/bottom-tabs";
import GeneralWebView from "./GeneralWebView";
const Stack = createStackNavigator();
export function MenuPage() {
@@ -128,6 +129,7 @@ export function MenuPage() {
component={AllTrainDiagramView}
/>
<Stack.Screen name="howto" options={optionData} component={HowTo} />
<Stack.Screen name="generalWebView" options={optionData} component={GeneralWebView} />
</Stack.Navigator>
);
}