cordova-plugin-hidescrollbar

Very basic plugin to hide scrollbar in a Cordova app.

Usage no npm install needed!

<script type="module">
  import cordovaPluginHidescrollbar from 'https://cdn.skypack.dev/cordova-plugin-hidescrollbar';
</script>

README

cordova-plugin-hidescrollbar

Very basic plugin to hide scrollbar in a Cordova app.

Supported platforms

  • iOS

How to use

To hide the scrollbar:

plugins.hideScrollbar.hide(function(){
    // Success
});

To show the scrollbar:

plugins.hideScrollbar.show(function(){
    // Success
});