react-native-web-webview icon indicating copy to clipboard operation
react-native-web-webview copied to clipboard

scrollEnabled is not working

Open anija opened this issue 4 years ago • 1 comments

Setting scrollEnabled={false} creates an iFrame with scrollbars. It's also impossibile to set the height of the iFrame, it will be always 100%.

anija avatar Dec 13 '19 10:12 anija

the generated iframe should get the attribute scrolling that depends on scrollEnabled (index.js, line 128): scrolling: scrollEnabled ? 'yes' : 'no',

claudiaTonak avatar Mar 01 '22 12:03 claudiaTonak