From 2a94a748aa61f762acdb1623c810cf3c6091ea28 Mon Sep 17 00:00:00 2001 From: Lorenzo Pichilli Date: Fri, 14 Oct 2022 14:29:01 +0200 Subject: [PATCH] fixed docs link --- README.md | 2 +- example/integration_test/webview_flutter_test.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81d0767d..18c2f84d 100755 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Migrating from version `5.x.x` is easy! Follow the online [Migration guide](http ## Articles/Resources -- [Official documentation: inappwebview.dev/docs](https://inappwebview.dev/docs/) +- [Official documentation: inappwebview.dev/docs](https://inappwebview.dev/docs/intro) - Read the online [API Reference](https://pub.dartlang.org/documentation/flutter_inappwebview/latest/) to get the **full API documentation**. - [Official blog: inappwebview.dev/blog](https://inappwebview.dev/blog/) - Find open source projects on the [Official Showcase page: inappwebview.dev/showcase](https://inappwebview.dev/showcase/) diff --git a/example/integration_test/webview_flutter_test.dart b/example/integration_test/webview_flutter_test.dart index 65df1f65..fb7828d5 100644 --- a/example/integration_test/webview_flutter_test.dart +++ b/example/integration_test/webview_flutter_test.dart @@ -16,7 +16,7 @@ import 'in_app_localhost_server/main.dart' as in_app_localhost_server_tests; void main() { IntegrationTestWidgetsFlutterBinding.ensureInitialized(); - if (defaultTargetPlatform == TargetPlatform.android) { + if (!kIsWeb && defaultTargetPlatform == TargetPlatform.android) { InAppWebViewController.setWebContentsDebuggingEnabled(true); }