Webview scroll issue in Android
See original GitHub issueBug description: Webview scrolls not working in Android.
import { WebView as RNWebView } from 'react-native-webview';
<RNWebView
source={{ uri: url }}
originWhitelist={['*']}
mediaPlaybackRequiresUserAction
startInLoadingState={true}
onLoadStart={onLoadStart}
onLoad={onLoad}
incognito={incognito}
hideKeyboardAccessoryView={true}
renderLoading={() => <Loader visible variant="light" />}
/>
The Webview is inside of a View
Environment:
- OS: Android
- OS version: 9
- react-native version: 0.66.0
- react-native-webview version:11.6.5
Issue Analytics
- State:
- Created 2 years ago
- Comments:17
Top Results From Across the Web
Android WebView isn't scrollable - Stack Overflow
If your WebView has the same height as its content, then there's never anything to scroll as obviously the content all fits by...
Read more >Android webview scroll and facebook comments problem ...
Android webview scroll and facebook comments problem when Admob loads advert. There is bizarre behavior in Android when you combine a “WebView” together ......
Read more >WebView/WebViewProvider needs to support nested scrolling ...
I think the key problem here is that when a scroll happens inside WebView, the touch event is never intercepted (in contrast to...
Read more >Webview scroll isuue on Android - Design - Adalo - Forum
Hi to all, I have an issue on Android: the webview mudule scrolling. My screen page is composed by: App top bar; A...
Read more >Content in webview is not rendering on scroll on Android L ...
Example URL: Steps to reproduce the problem: Steps: 1. Loading an website in WebView control. ... area. Though I know that content is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
If WebView inside ScrollView just remove ScrollView that will work
Had exactly same issue and got a fix now. in android manifest change
android:hardwareAcclerated="false"
toandroid:hardwareAccelerated="true"