react-native-web-community / react-native-web-webview

React Native for Web implementation of RN's WebView
https://react-native-web-community.github.io/react-native-web-webview/storybook
MIT License
133 stars 48 forks source link

Hide Scroll Bar (Vertical and Horizontal) #25

Open bikashsahucbnits opened 4 years ago

bikashsahucbnits commented 4 years ago

Hello,

It's possilble to implement a hide option for both Vertical and Horizontal scroll bar?

I have tried with below props but nothing works .. showsHorizontalScrollIndicator={false} showsVerticalScrollIndicator={false}

claudiaTonak commented 2 years ago

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