import { Linking, Text, View, TouchableOpacity } from "react-native";
import {
Foundation,
FontAwesome,
Ionicons,
MaterialCommunityIcons,
} from "@expo/vector-icons";
import { ListItem } from "@rneui/themed";
import TouchableScale from 'react-native-touchable-scale';
import Icon from "react-native-vector-icons/Entypo";
import { TextBox } from "../atom/TextBox";
import { TicketBox } from "../atom/TicketBox";
export const FixedContentBottom = (props) => {
return (
<>
{props.children}
}
flex={1}
onPressButton={() =>
Linking.openURL("https://www.jr-eki.com/ticket/brand")
}
>
トクトク切符
}
flex={1}
onPressButton={() =>
Linking.openURL(
"https://www.jr-shikoku.co.jp/01_trainbus/event_train/sp/"
)
}
>
観光列車
}
flex={1}
onPressButton={() =>
Linking.openURL("https://www.jr-eki.com/tour/brand")
}
>
旅行ツアー
Linking.openURL("https://xprocess.haruk.in/JR-shikoku-Apps-Common/2025-update-status")
}
>
【ダイヤ改正に伴うデータ更新状況】
ダイヤ改正に伴うデータの更新状況を随時更新します。
Linking.openURL("https://www.jr-eki.com/smart-eki/index.html")
}
>
スマートえきちゃん
JR四国のチケットレススマホアプリです。
Linking.openURL("https://www.jr-shikoku.co.jp/sp/index.html#menu-box")
}
>
臨時列車などのお知らせ
区間縮小・計画運休・イベント・季節臨時列車など
Linking.openURL("https://www.jr-shikoku.co.jp/03_news/press/")
}
>
ニュースリリース
公式プレス記事はこちら
Linking.openURL("https://www.jr-shikoku.co.jp/teiki/")
}
>
定期運賃計算
通常/学生/快て〜き等はこちら
Linking.openURL("https://www.jr-shikoku.co.jp/04_company/group/sp/")
}
>
JR四国のお店・サービス
JR四国グループの施設をご案内
Linking.openURL("https://www.jr-odekake.net/smt/")}
>
時刻・運賃計算
(マイ・ダイヤ)
マイ・ダイヤはJR西日本提供のサービスです。
Linking.openURL("tel:0570-00-4592")}
>
JR四国案内センター
0570-00-4592
(8:00~20:00 年中無休)
(通話料がかかります)
JR四国公式Twitter一族
{[
{
url: "https://twitter.com/jr_shikoku_info",
name: "JR四国列車運行情報",
},
{
url: "https://twitter.com/JRshikoku_eigyo",
name: "JR四国営業部【公式】",
},
{
url: "https://twitter.com/JRshikoku_tokyo",
name: "JR四国 東京営業情報【公式】",
},
{
url: "https://twitter.com/JRshikoku_osaka",
name: "JR四国 大阪営業部【公式】",
},
{
url: "https://twitter.com/jrs_matsuyama",
name: "JR四国 松山駅 【公式】",
},
{
url: "https://twitter.com/jrshikoku_kochi",
name: "JR四国 高知駅【公式】",
},
{
url: "https://twitter.com/jr_tokust",
name: "JR四国 徳島駅【公式】",
},
{
url: "https://twitter.com/jrshikoku_uwjm",
name: "JR四国 宇和島駅【公式】",
},
{
url: "https://twitter.com/jrshikoku_wkama",
name: "JR四国 ワープ高松支店【公式】",
},
{
url: "https://twitter.com/JRshikoku_wkoch",
name: "JR四国 ワープ高知支店【公式】",
},
{
url: "https://twitter.com/Yoakemonogatari",
name: "志国土佐 時代の夜明けのものがたり【公式】",
},
{
url: "https://twitter.com/Smile_Eki_Chan",
name: "すまいるえきちゃん♡JR四国【公式】",
},
{
url: "https://twitter.com/sper_ponchan",
name: "しこくたぬきのぽんちゃん 【四国家サポーターズクラブ】",
},
].map((d) => (
Linking.openURL(d.url)}
key={d.url}friction={90} //
tension={100} // These props are passed to the parent component (here TouchableScale)
activeScale={0.95} //
Component={TouchableScale}
>
{d.name}
))}
上級者向け機能
props.navigate("AllTrainIDList")}
>
列番探索
データベースに存在する全列車のダイヤを探索
その他
props.navigate("howto", {
info: "https://xprocess.haruk.in/tags/JR%E5%9B%9B%E5%9B%BD%E5%88%97%E8%BB%8A%E4%BD%8D%E7%BD%AE%E6%83%85%E5%A0%B1%E3%82%A2%E3%83%97%E3%83%AA/",
goTo: "menu",
})
}
>
アプリの更新情報
過去のアプリの更新履歴が表示できます。
props.navigate("setting")}
>
アプリの設定
アプリの設定画面を表示します。
{/*
*/}
>
);
};