From 2786dd58d2b50e26cc3c9bd0e9ecfa73954e475f Mon Sep 17 00:00:00 2001 From: Lorenzo Pichilli Date: Fri, 14 Oct 2022 10:05:13 +0200 Subject: [PATCH] updated README minimum ios xcode version --- README.md | 2 +- lib/src/in_app_webview/in_app_webview_controller.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0cbb1b6..81d0767d 100755 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Send a submission request to the [Submit App](https://inappwebview.dev/submit-ap - Dart sdk: ">=2.14.0 <3.0.0" - Flutter: ">=2.5.0" - Android: `minSdkVersion 19` and add support for `androidx` (see [AndroidX Migration](https://flutter.dev/docs/development/androidx-migration) to migrate an existing app) -- iOS 9.0+: `--ios-language swift`, Xcode version `>= 12` +- iOS 9.0+: `--ios-language swift`, Xcode version `>= 14` ## Installation diff --git a/lib/src/in_app_webview/in_app_webview_controller.dart b/lib/src/in_app_webview/in_app_webview_controller.dart index e5216d3c..eafba17b 100644 --- a/lib/src/in_app_webview/in_app_webview_controller.dart +++ b/lib/src/in_app_webview/in_app_webview_controller.dart @@ -2084,7 +2084,7 @@ class InAppWebViewController { this.javaScriptHandlersMap[handlerName] = (callback); } - ///Removes a JavaScript message handler previously added with the [addJavaScriptHandler()] associated to [handlerName] key. + ///Removes a JavaScript message handler previously added with the [addJavaScriptHandler] associated to [handlerName] key. ///Returns the value associated with [handlerName] before it was removed. ///Returns `null` if [handlerName] was not found. ///