Replies: 1 comment 1 reply
-
|
@SilverD3 You can check this example code test-validation or this issues #20 The example above is use to change the drawer information after user logged-in like:
or this sample if you want to change only header data SimpleHeader header = (SimpleHeader) Drawer.getDrawerBuilder().getHeader();
SimpleHeaderData headerData = header.getSimpleHeaderData();
headerData.setTitle("New Title");
headerData.setDescription("New Description");
header.setSimpleHeaderData(headerData);Thank you for using this library :) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello @DJ-Raven . I used to hate Swing applications because of their awful look and feel, but I have to say that when I came across your repository, I was blown away by the beauty of the interfaces and animations. Thank you for developing these components and making them open source.
However, I have a small problem with the Drawer. I haven't yet found a way to refresh it when I need it in the code.
When the application starts, the Drawer is installed. After login, I need to refresh the header of the drawer with the logged-in user's information, but I can't find a way to do it.
I tried to install it again but it showing twice.
Beta Was this translation helpful? Give feedback.
All reactions