Card
A card, typically with a title, subtitle, and child widget.
Usage
FCard(...)
FCard(
title: const Text('Notification'),
subtitle: const Text('You have 3 unread messages.'),
child: FButton(label: const Text('Read messages'), onPress: () {}),
);
FCard.raw(...)
FCard.raw(
child: const Placeholder(),
);