We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 016448f + a4c940a commit d66f16aCopy full SHA for d66f16a
ios/Classes/FlutterWebviewPlugin.m
@@ -94,8 +94,8 @@ - (void)initWebview:(FlutterMethodCall*)call {
94
self.webview.navigationDelegate = self;
95
self.webview.scrollView.delegate = self;
96
self.webview.hidden = [hidden boolValue];
97
- self.webview.showsHorizontalScrollIndicator = [scrollBar boolValue];
98
- self.webView.showsVerticalScrollIndicator = [scrollBar boolValue];
+ self.webview.scrollView.showsHorizontalScrollIndicator = [scrollBar boolValue];
+ self.webview.scrollView.showsVerticalScrollIndicator = [scrollBar boolValue];
99
100
_enableZoom = [withZoom boolValue];
101
0 commit comments