import React from "react"; import { View, Text, TouchableOpacity, ScrollView, Linking, Image, } from "react-native"; import * as Updates from "expo-updates"; import { SwitchArea } from "../atom/SwitchArea"; import { useWindowDimensions } from "react-native"; import { ListItem } from "native-base"; export const SettingTopPage = ({ navigate, iconSetting, setIconSetting, mapSwitch, setMapSwitch, stationMenu, setStationMenu, usePDFView, setUsePDFView, trainMenu, setTrainMenu, trainPosition, setTrainPosition, testNFC, updateAndReload, }) => { const { width } = useWindowDimensions(); return ( navigate("menu")} style={{ flexDirection: "column", flex: 1, }} > 閉じる アプリの設定画面 内部バージョン: 5.0.3.1 ReleaseChannel: {Updates.channel} このアプリは、四国旅客鉄道株式会社の提供する列車走行位置表示システムを利用し、HARUKIN/Xprocessにより一部の機能を拡張したものです。 このアプリに関するお問い合わせは、HARUKIN/Xprocessにお願いします。くれぐれも四国旅客鉄道株式会社にはお問い合わせしないようにお願いします。 {}}> お気に入り登録の管理(工事中) {">"} navigate("LayoutSettings")} > レイアウト設定 {">"} Linking.openURL( "https://nexcloud.haruk.in/sites/press-harukin/JRShikokuApps/policy" ) } > プライバシーポリシー Linking.openURL("https://nexcloud.haruk.in/s/2WFEN5oLPGtrRqT") } > 開発情報 testNFC()}> testNFC 設定を保存して再読み込み ); };