react-sticky icon indicating copy to clipboard operation
react-sticky copied to clipboard

How to disable on movil?

Open nesbtesh opened this issue 5 years ago • 2 comments

Is there a way to disable on Movil?

nesbtesh avatar Sep 21 '20 17:09 nesbtesh

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> ); };

nesbtesh avatar Sep 22 '20 15:09 nesbtesh

I am closing this issue Use: #170

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

nesbtesh avatar Nov 03 '20 00:11 nesbtesh