Skip to content

Commit

Permalink
Merge pull request #142 from rickytan/master
Browse files Browse the repository at this point in the history
fix: iOS webview compile & typo
  • Loading branch information
lejard-h authored Aug 1, 2018
2 parents 016448f + a4c940a commit d66f16a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/Classes/FlutterWebviewPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ - (void)initWebview:(FlutterMethodCall*)call {
self.webview.navigationDelegate = self;
self.webview.scrollView.delegate = self;
self.webview.hidden = [hidden boolValue];
self.webview.showsHorizontalScrollIndicator = [scrollBar boolValue];
self.webView.showsVerticalScrollIndicator = [scrollBar boolValue];
self.webview.scrollView.showsHorizontalScrollIndicator = [scrollBar boolValue];
self.webview.scrollView.showsVerticalScrollIndicator = [scrollBar boolValue];

_enableZoom = [withZoom boolValue];

Expand Down

0 comments on commit d66f16a

Please sign in to comment.