From 0301190608aaa8da31c55fc17b8d5fe4131ce99c Mon Sep 17 00:00:00 2001 From: Lorenzo Pichilli Date: Mon, 1 Mar 2021 20:36:31 +0100 Subject: [PATCH] Updated docs for iOS-specific options alwaysBounceVertical and alwaysBounceHorizontal --- .idea/libraries/Dart_Packages.xml | 738 ------------------ .idea/libraries/Flutter_Plugins.xml | 4 +- CHANGELOG.md | 4 + flutter_inappwebview.iml | 1 - .../ios/in_app_webview_options.dart | 4 + pubspec.yaml | 2 +- 6 files changed, 12 insertions(+), 741 deletions(-) delete mode 100644 .idea/libraries/Dart_Packages.xml diff --git a/.idea/libraries/Dart_Packages.xml b/.idea/libraries/Dart_Packages.xml deleted file mode 100644 index fbbebaa1..00000000 --- a/.idea/libraries/Dart_Packages.xml +++ /dev/null @@ -1,738 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Flutter_Plugins.xml b/.idea/libraries/Flutter_Plugins.xml index 31799730..65bb3679 100755 --- a/.idea/libraries/Flutter_Plugins.xml +++ b/.idea/libraries/Flutter_Plugins.xml @@ -1,6 +1,8 @@ - + + + diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e4a9552..09923466 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.0.5+2 + +- Updated docs for iOS-specific options `alwaysBounceVertical` and `alwaysBounceHorizontal` + ## 5.0.5+1 - Fixed "No bounce in inappwebview iOS" [#696](https://github.com/pichillilorenzo/flutter_inappwebview/issues/696) diff --git a/flutter_inappwebview.iml b/flutter_inappwebview.iml index 4cb39159..0adae5aa 100755 --- a/flutter_inappwebview.iml +++ b/flutter_inappwebview.iml @@ -80,6 +80,5 @@ - \ No newline at end of file diff --git a/lib/src/in_app_webview/ios/in_app_webview_options.dart b/lib/src/in_app_webview/ios/in_app_webview_options.dart index fc42d2da..7d4672dd 100755 --- a/lib/src/in_app_webview/ios/in_app_webview_options.dart +++ b/lib/src/in_app_webview/ios/in_app_webview_options.dart @@ -84,10 +84,14 @@ class IOSInAppWebViewOptions IOSUIScrollViewDecelerationRate decelerationRate; ///A Boolean value that determines whether bouncing always occurs when vertical scrolling reaches the end of the content. + ///If this property is set to `true` and [IOSInAppWebViewOptions.disallowOverScroll] is `false`, + ///vertical dragging is allowed even if the content is smaller than the bounds of the scroll view. ///The default value is `false`. bool alwaysBounceVertical; ///A Boolean value that determines whether bouncing always occurs when horizontal scrolling reaches the end of the content view. + ///If this property is set to `true` and [IOSInAppWebViewOptions.disallowOverScroll] is `false`, + ///horizontal dragging is allowed even if the content is smaller than the bounds of the scroll view. ///The default value is `false`. bool alwaysBounceHorizontal; diff --git a/pubspec.yaml b/pubspec.yaml index 5ff9509d..f82faacc 100755 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_inappwebview description: A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window. -version: 5.0.5+1 +version: 5.0.5+2 homepage: https://github.com/pichillilorenzo/flutter_inappwebview environment: