Exemplos de uso:
CoffeeText(
text: 'seu texto',
typography: CoffeeTypography.button,
)
CoffeeButton(
label: 'seu texto',
onPressed: () {},
),
CoffeeDialogUnicorn(
title: 'DialogUnicorn error',
middleText: 'Erro',
).error(context),
CoffeeCarousel(
items: <CarouselDTO> [
CarouselDTO (
link: 'target url',
image: 'image url',
),
],
onTap: (CarouselDTO i) {},
)
UnicornPage(
unicorn: AssetsUnicorn.image,
body: 'body',
title: 'title',
),
)