Skip to content

Commit

Permalink
fix: compile & typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rickytan committed Aug 1, 2018
1 parent 016448f commit a4c940a
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 a4c940a

Please sign in to comment.