scrollToCompat.js 189 Bytes


// handle API change in react native 0.20
function scrollToCompat(scrollResponder, y, x, animate = false) {
  scrollResponder.scrollTo({x, y, animate})
}

module.exports = scrollToCompat