You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the scrollToCompat.js has a little bug, that is function scrollToCompat(scrollResponder, y, x, animated = false) { if (isLegacyReactNative()) { scrollResponder.scrollTo(y, x, animated) } else { scrollResponder.scrollTo({x, y, animated}) } }
'animate' to 'animated',because the official doc need {x:x,y:y,animated:true}
The text was updated successfully, but these errors were encountered:
the scrollToCompat.js has a little bug, that is
function scrollToCompat(scrollResponder, y, x, animated = false) { if (isLegacyReactNative()) { scrollResponder.scrollTo(y, x, animated) } else { scrollResponder.scrollTo({x, y, animated}) } }
'animate' to 'animated',because the official doc need {x:x,y:y,animated:true}
The text was updated successfully, but these errors were encountered: