diff --git a/src/components/Custom/AutoHideComponent.js b/src/components/Custom/AutoHideComponent.js index 0a09710..2768414 100644 --- a/src/components/Custom/AutoHideComponent.js +++ b/src/components/Custom/AutoHideComponent.js @@ -33,7 +33,6 @@ export default class AutoHideComponent extends React.Component { onScroll({nativeEvent}: Object) { const speed = nativeEvent.contentOffset.y < 0 ? 0 : this.lastOffset - nativeEvent.contentOffset.y; - console.log(nativeEvent); if (speed < -5) { // Go down if (!this.isAnimationDownPlaying) { this.isAnimationDownPlaying = true;