import React from "react"; import { View, Text, TouchableOpacity, ScrollView, Linking, Image, Platform, } from "react-native"; import * as Updates from "expo-updates"; import { useWindowDimensions } from "react-native"; import { ListItem } from "native-base"; const versionCode = "5.4.1"; export const SettingTopPage = ({ navigate, testNFC, updateAndReload }) => { const { width } = useWindowDimensions(); return ( navigate("menu")} style={{ flexDirection: "column", flex: 1, }} > 閉じる アプリの設定画面 内部バージョン: {versionCode} ReleaseChannel: {Updates.channel} このアプリは、四国旅客鉄道株式会社の提供する列車走行位置表示システムを利用し、HARUKIN/Xprocessにより一部の機能を拡張したものです。 このアプリに関するお問い合わせは、HARUKIN/Xprocessにお願いします。くれぐれも四国旅客鉄道株式会社にはお問い合わせしないようにお願いします。 navigate("FavoriteSettings")} > お気に入り登録の並び替え {">"} navigate("LayoutSettings")} > レイアウト設定 {">"} {Platform.OS === "android" ? ( navigate("WidgetSettings")} > ウィジェット設定 {">"} ) : null} Linking.openURL( "https://nexcloud.haruk.in/sites/press-harukin/JRShikokuApps/policy" ) } > プライバシーポリシー Linking.openURL("https://nexcloud.haruk.in/s/2WFEN5oLPGtrRqT") } > 開発情報 Linking.openURL("https://twitter.com/Xprocess_main")} > 運営Twitter {/* testNFC()}> testNFC */} 設定を保存して再読み込み ); };