有没有办法在FlatList中使用可变数组?
我正在尝试制作一个玩具秒表应用程序,以学习本机。
I made a lap system, but it is getting way too slow when there are >15 laps. I think the poor performance point is the laps: this.state.laps.concat([d - this.state.lapTimerStart]) part, because of .concat is making a new object eve...