|
@@ -72,6 +72,7 @@ This document lays out the current public properties and methods for the React N
|
72
|
72
|
- [`ignoreSilentHardwareSwitch`](Reference.md#ignoreSilentHardwareSwitch)
|
73
|
73
|
- [`onFileDownload`](Reference.md#onFileDownload)
|
74
|
74
|
- [`autoManageStatusBarEnabled`](Reference.md#autoManageStatusBarEnabled)
|
|
75
|
+- [`setSupportMultipleWindows`](Reference.md#setSupportMultipleWindows)
|
75
|
76
|
|
76
|
77
|
## Methods Index
|
77
|
78
|
|
|
@@ -1281,6 +1282,20 @@ Example:
|
1281
|
1282
|
<WebView autoManageStatusBarEnabled={false} />
|
1282
|
1283
|
```
|
1283
|
1284
|
|
|
1285
|
+### `setSupportMultipleWindows`
|
|
1286
|
+
|
|
1287
|
+Sets whether the WebView supports multiple windows. See [Android documentation]('https://developer.android.com/reference/android/webkit/WebSettings#setSupportMultipleWindows(boolean)') for more information.
|
|
1288
|
+
|
|
1289
|
+| Type | Required | Default | Platform |
|
|
1290
|
+| ------- | -------- | ------- | -------- |
|
|
1291
|
+| boolean | No | true | Android |
|
|
1292
|
+
|
|
1293
|
+Example:
|
|
1294
|
+
|
|
1295
|
+```javascript
|
|
1296
|
+<WebView setSupportMultipleWindows={false} />
|
|
1297
|
+```
|
|
1298
|
+
|
1284
|
1299
|
## Methods
|
1285
|
1300
|
|
1286
|
1301
|
### `extraNativeComponentConfig()`[⬆](#methods-index)<!-- Link generated with jump2header -->
|