1
+ import 'dart:typed_data' ;
2
+
1
3
import 'package:flutter/foundation.dart' ;
2
4
import 'package:flutter/widgets.dart' ;
3
5
import 'package:flutter_inappwebview_internal_annotations/flutter_inappwebview_internal_annotations.dart' ;
4
- import 'dart:typed_data' ;
5
6
7
+ import '../content_blocker.dart' ;
8
+ import '../context_menu/context_menu.dart' ;
9
+ import '../in_app_browser/in_app_browser_settings.dart' ;
10
+ import '../in_app_browser/platform_in_app_browser.dart' ;
11
+ import '../in_app_webview/platform_inappwebview_controller.dart' ;
6
12
import '../platform_webview_asset_loader.dart' ;
13
+ import '../platform_webview_feature.dart' ;
7
14
import '../types/action_mode_menu_item.dart' ;
8
15
import '../types/cache_mode.dart' ;
9
16
import '../types/data_detector_types.dart' ;
10
17
import '../types/force_dark.dart' ;
11
18
import '../types/force_dark_strategy.dart' ;
12
19
import '../types/layout_algorithm.dart' ;
20
+ import '../types/main.dart' ;
13
21
import '../types/mixed_content_mode.dart' ;
14
22
import '../types/over_scroll_mode.dart' ;
15
23
import '../types/referrer_policy.dart' ;
@@ -21,17 +29,10 @@ import '../types/scrollview_deceleration_rate.dart';
21
29
import '../types/selection_granularity.dart' ;
22
30
import '../types/user_preferred_content_mode.dart' ;
23
31
import '../types/vertical_scrollbar_position.dart' ;
32
+ import '../util.dart' ;
24
33
import '../web_uri.dart' ;
25
34
import 'android/in_app_webview_options.dart' ;
26
35
import 'apple/in_app_webview_options.dart' ;
27
- import '../content_blocker.dart' ;
28
- import '../types/main.dart' ;
29
- import '../util.dart' ;
30
- import '../in_app_browser/in_app_browser_settings.dart' ;
31
- import '../platform_webview_feature.dart' ;
32
- import '../in_app_webview/platform_inappwebview_controller.dart' ;
33
- import '../context_menu/context_menu.dart' ;
34
- import '../in_app_browser/platform_in_app_browser.dart' ;
35
36
import 'platform_webview.dart' ;
36
37
37
38
part 'in_app_webview_settings.g.dart' ;
@@ -57,12 +58,8 @@ class InAppWebViewSettings_ {
57
58
///If the [PlatformWebViewCreationParams.shouldOverrideUrlLoading] event is implemented and this value is `null` ,
58
59
///it will be automatically inferred as `true` , otherwise, the default value is `false` .
59
60
///This logic will not be applied for [PlatformInAppBrowser] , where you must set the value manually.
60
- @SupportedPlatforms (platforms: [
61
- AndroidPlatform (),
62
- IOSPlatform (),
63
- MacOSPlatform (),
64
- WindowsPlatform ()
65
- ])
61
+ @SupportedPlatforms (
62
+ platforms: [AndroidPlatform (), IOSPlatform (), MacOSPlatform ()])
66
63
bool ? useShouldOverrideUrlLoading;
67
64
68
65
///Set to `true` to be able to listen at the [PlatformWebViewCreationParams.onLoadResource] event.
@@ -102,11 +99,7 @@ class InAppWebViewSettings_ {
102
99
MacOSPlatform (
103
100
apiName: "WKWebView.customUserAgent" ,
104
101
apiUrl:
105
- "https://developer.apple.com/documentation/webkit/wkwebview/1414950-customuseragent" ),
106
- WindowsPlatform (
107
- apiName: 'ICoreWebView2Settings2.put_UserAgent' ,
108
- apiUrl:
109
- 'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings2?view=webview2-1.0.2210.55#put_useragent' )
102
+ "https://developer.apple.com/documentation/webkit/wkwebview/1414950-customuseragent" )
110
103
])
111
104
String ? userAgent;
112
105
@@ -138,11 +131,7 @@ class InAppWebViewSettings_ {
138
131
apiName: "WKWebpagePreferences.allowsContentJavaScript" ,
139
132
apiUrl:
140
133
"https://developer.apple.com/documentation/webkit/wkwebpagepreferences/3552422-allowscontentjavascript/" ),
141
- WebPlatform (requiresSameOrigin: false ),
142
- WindowsPlatform (
143
- apiName: "ICoreWebView2Settings.put_IsScriptEnabled" ,
144
- apiUrl:
145
- "https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_isscriptenabled" )
134
+ WebPlatform (requiresSameOrigin: false )
146
135
])
147
136
bool ? javaScriptEnabled;
148
137
@@ -319,12 +308,7 @@ because there isn't any way to make the website data store non-persistent for th
319
308
@SupportedPlatforms (platforms: [
320
309
AndroidPlatform (),
321
310
IOSPlatform (),
322
- MacOSPlatform (available: "12.0" ),
323
- WindowsPlatform (
324
- available: '1.0.774.44' ,
325
- apiName: 'ICoreWebView2Controller2.put_DefaultBackgroundColor' ,
326
- apiUrl:
327
- 'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2controller2?view=webview2-1.0.2210.55#put_defaultbackgroundcolor' )
311
+ MacOSPlatform (available: "12.0" )
328
312
])
329
313
bool ? transparentBackground;
330
314
@@ -339,15 +323,8 @@ because there isn't any way to make the website data store non-persistent for th
339
323
bool ? disableHorizontalScroll;
340
324
341
325
///Set to `true` to disable context menu. The default value is `false` .
342
- @SupportedPlatforms (platforms: [
343
- AndroidPlatform (),
344
- IOSPlatform (),
345
- WebPlatform (),
346
- WindowsPlatform (
347
- apiName: "ICoreWebView2Settings.put_AreDefaultContextMenusEnabled" ,
348
- apiUrl:
349
- "https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_aredefaultcontextmenusenabled" )
350
- ])
326
+ @SupportedPlatforms (
327
+ platforms: [AndroidPlatform (), IOSPlatform (), WebPlatform ()])
351
328
bool ? disableContextMenu;
352
329
353
330
///Set to `false` if the WebView should not support zooming using its on-screen zoom controls and gestures. The default value is `true` .
@@ -357,11 +334,7 @@ because there isn't any way to make the website data store non-persistent for th
357
334
apiUrl:
358
335
"https://developer.android.com/reference/android/webkit/WebSettings?hl=en#setSupportZoom(boolean)" ),
359
336
IOSPlatform (),
360
- MacOSPlatform (),
361
- WindowsPlatform (
362
- apiName: "ICoreWebView2Settings.put_IsZoomControlEnabled" ,
363
- apiUrl:
364
- "https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_iszoomcontrolenabled" )
337
+ MacOSPlatform ()
365
338
])
366
339
bool ? supportZoom;
367
340
@@ -805,6 +778,11 @@ because there isn't any way to make the website data store non-persistent for th
805
778
@SupportedPlatforms (platforms: [AndroidPlatform ()])
806
779
String ? regexToCancelSubFramesLoading;
807
780
781
+ ///Regular expression used by [PlatformWebViewCreationParams.shouldOverrideUrlLoading] event to cancel navigation requests
782
+ ///If the url request not matches the regular expression, then the shouldOverrideUrlLoading is return false.
783
+ @SupportedPlatforms (platforms: [AndroidPlatform ()])
784
+ String ? regexToCancelOverrideUrlLoading;
785
+
808
786
///Set to `false` to disable Flutter Hybrid Composition. The default value is `true` .
809
787
///Hybrid Composition is supported starting with Flutter v1.20+.
810
788
@SupportedPlatforms (platforms: [
@@ -1565,11 +1543,7 @@ as it can cause framerate drops on animations in Android 9 and lower (see [Hybri
1565
1543
available: "13.3" ,
1566
1544
apiName: "WKWebView.isInspectable" ,
1567
1545
apiUrl:
1568
- "https://developer.apple.com/documentation/webkit/wkwebview/4111163-isinspectable" ),
1569
- WindowsPlatform (
1570
- apiName: "ICoreWebView2Settings.put_AreDevToolsEnabled" ,
1571
- apiUrl:
1572
- "https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_aredevtoolsenabled" )
1546
+ "https://developer.apple.com/documentation/webkit/wkwebview/4111163-isinspectable" )
1573
1547
])
1574
1548
bool ? isInspectable;
1575
1549
@@ -1722,6 +1696,7 @@ as it can cause framerate drops on animations in Android 9 and lower (see [Hybri
1722
1696
this .initialScale = 0 ,
1723
1697
this .supportMultipleWindows = false ,
1724
1698
this .regexToCancelSubFramesLoading,
1699
+ this .regexToCancelOverrideUrlLoading,
1725
1700
this .useHybridComposition = true ,
1726
1701
this .useShouldInterceptRequest,
1727
1702
this .useOnRenderProcessGone,
0 commit comments