You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user-interface/controls/hybridwebview.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1024,4 +1024,19 @@ Common patterns include:
1024
1024
- Returning local files or in-memory content for offline or testing scenarios.
1025
1025
- Redirecting to a different URI by returning a 3xx status code with an appropriate `Location` header.
1026
1026
1027
+
### Implementation Restrictions
1028
+
1029
+
***Android**
1030
+
* Android does not directly allow "intercept-and-continue" for requests. The implementation is to rather notify you that a request is about to happen and you can either replace the whole request or do nothing and let the webview do it.
1031
+
* Android does not support custom schemes.
1032
+
***iOS/Mac Catalyst**
1033
+
* iOS and Mac Catalyst do not allow interception of `http` and `https` requests.
0 commit comments