From a4c940a7ec1fb8dcaf16efdaaf0eed973c2b7977 Mon Sep 17 00:00:00 2001 From: Ricky Tan Date: Wed, 1 Aug 2018 14:37:04 +0800 Subject: [PATCH] fix: compile & typo --- ios/Classes/FlutterWebviewPlugin.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/Classes/FlutterWebviewPlugin.m b/ios/Classes/FlutterWebviewPlugin.m index 2494aeea..dd4ac2ea 100644 --- a/ios/Classes/FlutterWebviewPlugin.m +++ b/ios/Classes/FlutterWebviewPlugin.m @@ -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];