You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
Scrolling not working for me also. I'm on iOS 12.1.1 (iPhone X). I noticed that scrolling has been turned off in nativescript-webview-ext/webview-ext.uiwebview.js.
uiWebView.scrollView.scrollEnabled = false;
And setting this to true does fix the issue. Let me know if this is a valid fix for the issue. I could send in a PR.
Hi,
I've recently upgraded from iOS 12 to 12.0.1 and scrolling in the webview isn't working. My template is as follows.
<GridLayout rows="*" columns="*"> <WebViewExt row="0" col="0" src="..." @loaded="webviewLoaded" debugMode="false"></WebViewExt> </GridLayout>
Scrolling is working fine in iOS 12.0.
As a workaround I tried using a StackLayout and wrapped in with a ScrollView as discussed in NativeScript/NativeScript#224
<ScrollView> <StackLayout> <WebViewExt minHeight="1000" src="..." @loaded="webviewLoaded" debugMode="false"></WebViewExt> </StackLayout> </ScrollView>
This didn't work either.
However, it does work if I use the default WebView.
<ScrollView> <StackLayout> <WebView minHeight="1000" src="..."></WebView> </StackLayout> </ScrollView>
The text was updated successfully, but these errors were encountered: