we are migrating an application to the latest Vaadin 24 version, today managed to get it up and running the first time.
But as we have used com.github.appreciated.card.ClickableCard at the “Home View” it seems we need to replace it somehow, because of the polymer based source.
Has anyone some hints or knows a replacement component?
Pretty simple cards with shadow, a click navigates to the according View.
var card = new Div();
card.addClassName("card-div");
card.add(new H4("Headline:"));
card.add(new Paragraph("""
some text and \
some more text\
"""));
card.addSingleClickListener(event -> UI.getCurrent().navigate("target view"));