Androidでメニューの看板一覧表示されないバグ修正試行

This commit is contained in:
harukin-OneMix4 2024-01-04 00:47:33 +09:00
parent 16f7d1f7ad
commit 0753bf7023

View File

@ -1,4 +1,4 @@
import React, { useRef, useState, useEffect } from "react";
import React, { useRef, useState, useEffect, useLayoutEffect } from "react";
import Carousel from "react-native-snap-carousel";
import {
Platform,
@ -101,7 +101,7 @@ export default function Menu(props) {
const [currentStation, setCurrentStation] = useState(undefined); //第三要素
const [originalStationList, setOriginalStationList] = useState(); // 第一要素
useEffect(() => getStationList().then(setOriginalStationList), []);
useLayoutEffect(() => getStationList().then(setOriginalStationList), []);
const carouselRef = useRef();
const [selectedCurrentStation, setSelectedCurrentStation] = useState(0);