captivationsoftware/react-sticky

How to disable on movil?

Opened this issue · 2 comments

Is there a way to disable on Movil?

I ended up just adding the fallow code

const StickyWrapper = ({ isSticky, children }) => { if (!isSticky) return children; return ( <Sticky topOffset={0}> {({ style }) => ( <WrapperScroll style={style}>{children}</WrapperScroll> )} </Sticky> ); };

I am closing this issue Use: #170

The above solution doesn't work well with styled-component