次のコードがあります。
<ScrollView>
...
<ListView ... renderRow={ (rowData) => return (
<SomeCustomComponent> {rowData} </SomeCustomComponent>
)}/>
</ScrollView>
ユーザーが現在表示されている行を「離れ」、次の行にスクロールするタイミングを判断するにはどうすればよいですか?
次のコードがあります。
<ScrollView>
...
<ListView ... renderRow={ (rowData) => return (
<SomeCustomComponent> {rowData} </SomeCustomComponent>
)}/>
</ScrollView>
ユーザーが現在表示されている行を「離れ」、次の行にスクロールするタイミングを判断するにはどうすればよいですか?