Skip to content

Instantly share code, notes, and snippets.

View superandrew213's full-sized avatar

Andrew Shini superandrew213

  • Brisbane, Australia
View GitHub Profile
@superandrew213
superandrew213 / RWPositionTracker.js
Last active October 3, 2019 12:14
react-window FixedSizeList & FixedSizeGrid position tracker - Can be used for onTopReached, onEndReached, onItemsVisibilityChange
// @flow
import { Component } from 'react'
export type PositionsType = {
visibleColumnStopIndex: number,
visibleRowStartIndex: number,
visibleRowStopIndex: number,
visibleStartIndex?: number,
visibleStopIndex?: number,