Hamed
Hamed

Reputation: 1213

Reindeer.BUTTON_LINK in Vaadin 8

I am trying to have button which looks like a link in Vaadin 8.2.0. I am developing in Netbeans 8.2. I found this piece of code:

Button btn = new Button("Click Here"); 
btn.setStyleName(Reindeer.BUTTON_LINK); 

But, it seems that in Vaadin 8 there is not such a Reindeer class. Is there any alternative?

Upvotes: 1

Views: 237

Answers (2)

Steffen Harbich
Steffen Harbich

Reputation: 2749

Alternatively: ValoTheme.BUTTON_LINK

See Javadoc.

Upvotes: 3

André Schild
André Schild

Reputation: 4754

BaseTheme.LINK_STYLE should work in v8

Upvotes: 1

Related Questions