外枠の位置を修正
This commit is contained in:
parent
e94a10c86c
commit
3c14d73c9d
@ -124,7 +124,11 @@ export default function Sign(props) {
|
|||||||
setTestButtonStatus(!testButtonStatus);
|
setTestButtonStatus(!testButtonStatus);
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<TouchableOpacity style={styleSheet.外枠} onPress={oP} onLongPress={oLP}>
|
<TouchableOpacity
|
||||||
|
style={styleSheet[isMatsuyama ? "外枠B" : "外枠"]}
|
||||||
|
onPress={oP}
|
||||||
|
onLongPress={oLP}
|
||||||
|
>
|
||||||
{isMatsuyama && (
|
{isMatsuyama && (
|
||||||
<LottieView
|
<LottieView
|
||||||
autoPlay
|
autoPlay
|
||||||
@ -174,6 +178,11 @@ const styleSheet = {
|
|||||||
borderWidth: 1,
|
borderWidth: 1,
|
||||||
backgroundColor: "white",
|
backgroundColor: "white",
|
||||||
},
|
},
|
||||||
|
外枠B: {
|
||||||
|
width: wp("80%"),
|
||||||
|
height: (wp("80%") / 20) * 9,
|
||||||
|
borderWidth: 0,
|
||||||
|
},
|
||||||
下帯: {
|
下帯: {
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
bottom: "0%",
|
bottom: "0%",
|
||||||
|
Loading…
Reference in New Issue
Block a user