4.4 release

This commit is contained in:
harukin-DeskMini
2022-09-30 00:05:16 +09:00
parent 66e3fb3d75
commit 518a678ada
4 changed files with 28 additions and 34 deletions

View File

@@ -67,7 +67,26 @@ export default function Setting(props) {
textAlignVertical: "center",
}}
>
内部バージョン: 4.3.3.1
マップを表示する(beta)
</Text>
<View style={{ flex: 1 }} />
<Switch
value={mapSwitch == "true" ? true : false}
color={mapSwitch == "true" ? "red" : null}
onValueChange={(value) => setMapSwitch(value.toString())}
/>
</View>
<View style={{ flexDirection: "row", padding: 10 }}>
<Text
style={{
fontSize: 25,
alignItems: "center",
alignContent: "center",
textAlign: "center",
textAlignVertical: "center",
}}
>
内部バージョン: 4.4
</Text>
<View style={{ flex: 1 }} />
</View>
@@ -85,26 +104,6 @@ export default function Setting(props) {
</Text>
<View style={{ flex: 1 }} />
</View>
<View style={{ flexDirection: "row", padding: 10 }}>
<Text
style={{
fontSize: 25,
alignItems: "center",
alignContent: "center",
textAlign: "center",
textAlignVertical: "center",
}}
>
マップを表示する(beta)
</Text>
<View style={{ flex: 1 }} />
<Switch
value={mapSwitch == "true" ? true : false}
color={mapSwitch == "true" ? "red" : null}
onValueChange={(value) => setMapSwitch(value.toString())}
/>
</View>
</View>
</View>
<TouchableOpacity