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
I tried the showOn option to show a panel only on medium, but it doesn't work.
Code used : MaterialPanel mediumFabPanel = new MaterialPanel(); mediumFabPanel.setShowOn(ShowOn.SHOW_ON_MED);
Fix for me (using initialClass) : MaterialPanel mediumFabPanel = new MaterialPanel("hide-on-small-only", "hide-on-large-only");
Tested on version 1.6.0.
I have not try others parameters.
Not visible on your website.
Hope it helps.
The text was updated successfully, but these errors were encountered:
Thanks for catching, The issue was there's no class show-on-med`` on Materialize it must beshow-on-medium```, I will update the ENUM values.
show-on-med`` on Materialize it must be
Sorry, something went wrong.
Fixed - ShowOn SHOW_ON_MED problem #493
33f922b
Fixed via 33f922b
kevzlou7979
No branches or pull requests
I tried the showOn option to show a panel only on medium, but it doesn't work.
Code used :
MaterialPanel mediumFabPanel = new MaterialPanel();
mediumFabPanel.setShowOn(ShowOn.SHOW_ON_MED);
Fix for me (using initialClass) :
MaterialPanel mediumFabPanel = new MaterialPanel("hide-on-small-only", "hide-on-large-only");
Tested on version 1.6.0.
I have not try others parameters.
Not visible on your website.
Hope it helps.
The text was updated successfully, but these errors were encountered: