diff --git a/harmony/rn_webview/src/main/cpp/WebViewJSIBinder.h b/harmony/rn_webview/src/main/cpp/WebViewJSIBinder.h index 90fa0e087..d1db0d7ea 100644 --- a/harmony/rn_webview/src/main/cpp/WebViewJSIBinder.h +++ b/harmony/rn_webview/src/main/cpp/WebViewJSIBinder.h @@ -46,6 +46,7 @@ namespace rnoh { object.setProperty(rt, "messagingModuleName", "string"); object.setProperty(rt, "shouldStartLoadWithRequestEnabled", "bool"); object.setProperty(rt, "webviewDebuggingEnabled", "bool"); + object.setProperty(rt, "scrollEnabled", "bool"); return object; } diff --git a/harmony/rn_webview/src/main/cpp/WebViewNapiBinder.h b/harmony/rn_webview/src/main/cpp/WebViewNapiBinder.h index d4bb55b02..bfe26f30b 100644 --- a/harmony/rn_webview/src/main/cpp/WebViewNapiBinder.h +++ b/harmony/rn_webview/src/main/cpp/WebViewNapiBinder.h @@ -57,6 +57,7 @@ namespace rnoh { .addProperty("messagingModuleName", props->messagingModuleName) .addProperty("shouldStartLoadWithRequestEnabled", props->shouldStartLoadWithRequestEnabled) .addProperty("webviewDebuggingEnabled", props->webviewDebuggingEnabled) + .addProperty("scrollEnabled", props->scrollEnabled) .build(); } return napiViewProps;