This commit is contained in:
harukin-DeskMini 2022-11-22 14:42:50 +09:00
commit 00e0dbab9d
2 changed files with 3 additions and 1 deletions

View File

@ -102,7 +102,7 @@ export default function Setting(props) {
textAlignVertical: "center",
}}
>
内部バージョン: 4.4.2.1
内部バージョン: 4.4.2.2
</Text>
<View style={{ flex: 1 }} />
</View>

View File

@ -44,6 +44,7 @@ export default function Sign(props) {
};
const [nexPrePosition, setNexPrePosition] = useState(0);
useInterval(() => {
if (currentStation.length == 1) return;
LayoutAnimation.easeInEaseOut();
setNexPrePosition(
nexPrePosition + 1 == currentStation.length ? 0 : nexPrePosition + 1
@ -122,6 +123,7 @@ const StationNumberMaker = (props) => {
.filter((d) => (d.StationNumber ? true : false))
.map((d, index, array) => (
<View
key={d + index}
style={{
position: "absolute",
alignContent: "center",