駅名標に住所の表示を開始

This commit is contained in:
harukin-expo-dev-env
2024-09-01 04:46:26 +00:00
parent 45021b2427
commit c9b59c3b62
3 changed files with 48 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ import { StationNameArea } from "./StationNameArea";
import { StationNumberMaker } from "./StationNumberMaker";
import { NextPreStationLine } from "./NextPreStationLine";
import { LottieDelayView } from "./LottieDelayView";
import { AddressText } from "./AddressText";
export default function Sign(props) {
const {
@@ -162,6 +163,7 @@ export default function Sign(props) {
<View style={styleSheet[isMatsuyama ? "下帯内容B" : "下帯内容"]}>
<NextPreStationLine {...{ nexStation, preStation, isMatsuyama }} />
</View>
<AddressText {...{ currentStation, isMatsuyama }} />
</TouchableOpacity>
);
}
@@ -176,10 +178,10 @@ const styleSheet = {
},
下帯: {
position: "absolute",
bottom: "0%",
bottom: "8%",
left: "0%",
width: "100%",
height: "30%",
height: "27%",
backgroundColor: "#0099CC",
},
下帯B: {
@@ -200,8 +202,8 @@ const styleSheet = {
},
下帯内容: {
position: "absolute",
bottom: "0%",
height: "30%",
bottom: "8%",
height: "27%",
width: "100%",
alignItems: "center",
flexDirection: "column",