We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setVerticalScrollBarEnabled version for iOS
setVerticalScrollBarEnabled
You can create a plugin and put this code in the load method
public void load() { bridge.getWebView().setVerticalScrollBarEnabled(false); }
Or without a plugin you can put this code in the MainActivity.java
@Override public void onStart() { super.onStart(); bridge.getWebView().setVerticalScrollBarEnabled(false); }
Originally posted by @jcesarmobile in #5469 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
setVerticalScrollBarEnabled
version for iOSOr without a plugin you can put this code in the MainActivity.java
Originally posted by @jcesarmobile in #5469 (comment)
The text was updated successfully, but these errors were encountered: