Skip to content
Miguel Pérez Colom edited this page Oct 11, 2024 · 3 revisions

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) {
}
Clone this wiki locally