When scrolling a webview the scrolling stops immediately after removing your finger from the screen, as opposed to the normal "momentum" style scrolling. It works fine on an iPad, but does not work on an iPhone.
React Native 0.17.0
iOS Versions Tested: 8.4, 9.1, 9.2
Devices Tested: iPhone 6, iPhone 6s, iPad Retina, iPad Mini
import React, { WebView } from 'react-native'
class App extends React.Component {
render() {
return (
<WebView
url={'https://news.ycombinator.com'}
/>
)
}
}
React.AppRegistry.registerComponent('App', () => App);
When scrolling a webview the scrolling stops immediately after removing your finger from the screen, as opposed to the normal "momentum" style scrolling. It works fine on an iPad, but does not work on an iPhone.
React Native 0.17.0
iOS Versions Tested: 8.4, 9.1, 9.2
Devices Tested: iPhone 6, iPhone 6s, iPad Retina, iPad Mini