Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to enable refresh on swipe down on mobile? #132

Open
piotrkraszewski opened this issue Feb 19, 2021 · 0 comments
Open

How to enable refresh on swipe down on mobile? #132

piotrkraszewski opened this issue Feb 19, 2021 · 0 comments

Comments

@piotrkraszewski
Copy link

How to enable refresh on swipe down gesture on mobile when you replace default scrollbar with perfect scrollbar?

I am wrapping all my components in scrollbar but then refresh on mobile doesn't work. Right now I used a solution from this link that disables perfect-scrollbar on mobile and I am using it only on pc: #101

import ScrollBar from 'react-perfect-scrollbar'
import { isMobile } from "react-device-detect";
import './ScroolbarStyle.scss'

export default function AppScrollbar (props) {
  return (
    isMobile ? (
      <div className="overflow-y-auto">
        {props.children}
      </div>
    ) : (
      <ScrollBar className='AppScroolbar'>
        {props.children}
      </ScrollBar>
  ))
.AppScroolbar{
  position: absolute;
  width: 100%;
  height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant