LEDから列車視点版への移動が可能に

This commit is contained in:
harukin-DeskMini
2023-01-28 08:31:39 +09:00
parent a5523d61c3
commit 29963ab876
5 changed files with 74 additions and 26 deletions

12
App.js
View File

@@ -110,6 +110,18 @@ function menuPage() {
}}
/>
<Stack.Screen name="setting" component={Setting} options={optionData} />
<Stack.Screen
name="trainbase"
component={trainbase}
options={{
...TransitionPresets.ModalPresentationIOS,
cardOverlayEnabled: true,
headerShown: false,
gestureEnabled: true,
headerTransparent: true,
gestureResponseDistance: { vertical: 300 },
}}
/>
</Stack.Navigator>
);
}