ATShiTou

Results 4 comments of ATShiTou

When the data changed from some items to [];

I have issues with RN0.59 , too. It does not work at all.

目前可以在这里 Group.js ``` update(index: number, init: boolean) { if (index < 0 || index >= this.props.indexes.length || this._currentIndex === index) return; this._currentIndex = index; !init && this.forceUpdate(); } ``` 改变了就表示之前的离开了屏幕,显示了新的。但是请注意这个不是很准确。

I use `fetch` to read/write files: ``` const res = await fetch(filePath); const content = await res.text(); ```