diff --git a/components/Settings/FavoriteSettings.js b/components/Settings/FavoriteSettings.js
new file mode 100644
index 0000000..d24a238
--- /dev/null
+++ b/components/Settings/FavoriteSettings.js
@@ -0,0 +1,160 @@
+import React from "react";
+import { View, Text, TouchableOpacity, ScrollView } from "react-native";
+import { SwitchArea } from "../atom/SwitchArea";
+import { CheckBox } from "react-native-elements";
+import { TripleSwitchArea } from "../atom/TripleSwitchArea";
+
+export const FavoriteSettings = ({
+ navigate,
+ iconSetting,
+ setIconSetting,
+ mapSwitch,
+ setMapSwitch,
+ stationMenu,
+ setStationMenu,
+ usePDFView,
+ setUsePDFView,
+ trainMenu,
+ setTrainMenu,
+ trainPosition,
+ setTrainPosition,
+ headerSize,
+ setHeaderSize,
+}) => {
+ return (
+
+
+
+ navigate("settingTopPage")}
+ style={{
+ flexDirection: "column",
+ flex: 1,
+ }}
+ >
+
+
+ < 設定
+
+
+
+
+
+
+ お気に入り設定
+
+
+
+
+ {/*
+
+
+
+
+
+
+
+
+
+ */}
+ 作成中
+
+
+ );
+};
+
+const SimpleSwitch = ({ bool, setBool, str }) => (
+
+ setBool(bool == "true" ? "false" : "true")}
+ containerStyle={{
+ flex: 1,
+ backgroundColor: "#00000000",
+ borderColor: "white",
+ alignContent: "center",
+ }}
+ textStyle={{ fontSize: 20, fontWeight: "normal" }}
+ title={str}
+ />
+
+);
diff --git a/components/Settings/SettingTopPage.js b/components/Settings/SettingTopPage.js
index 490caf0..44bdaef 100644
--- a/components/Settings/SettingTopPage.js
+++ b/components/Settings/SettingTopPage.js
@@ -114,7 +114,10 @@ export const SettingTopPage = ({
- {}}>
+ navigate("FavoriteSettings")}
+ >
)}
+
+ {(props) => (
+
+ )}
+
);
}