Skip to content

Commit d66f16a

Browse files
authored
Merge pull request #142 from rickytan/master
fix: iOS webview compile & typo
2 parents 016448f + a4c940a commit d66f16a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ios/Classes/FlutterWebviewPlugin.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ - (void)initWebview:(FlutterMethodCall*)call {
9494
self.webview.navigationDelegate = self;
9595
self.webview.scrollView.delegate = self;
9696
self.webview.hidden = [hidden boolValue];
97-
self.webview.showsHorizontalScrollIndicator = [scrollBar boolValue];
98-
self.webView.showsVerticalScrollIndicator = [scrollBar boolValue];
97+
self.webview.scrollView.showsHorizontalScrollIndicator = [scrollBar boolValue];
98+
self.webview.scrollView.showsVerticalScrollIndicator = [scrollBar boolValue];
9999

100100
_enableZoom = [withZoom boolValue];
101101

0 commit comments

Comments
 (0)