Cards - miguelperezcolom/mateu GitHub Wiki
Cards in Mateu are used to build cards like the ones defined in the Material design (see here).
You create a card by using the Card
record.
public record Card(
CardLayout layout,
String thumbnail,
String headerText,
String subhead,
String media,
String supportingText,
List<Button> buttons,
List<CallableIcon> icons) {
}