Back to All

Pull to Refresh doesn't trigger

Hi,
I have added some styles to html element to hide a scrollbar, but now the Pull to Refresh feature stopped to work. Can I trigger it programmatically?

That are my styles to hide scrollbars:

html {
overflow: hidden;
height: 100vh;
padding-right: 20px;
margin-right: -20px;
}

body {
overflow: auto;
height: 100%;
}