Documentation
Card

Card

A card, typically with a title, subtitle, and child widget.

Usage

FCard(...)

FCard(
  title: 'Notification',
  subtitle: 'You have 3 unread messages.',
  child: FButton(label: 'Read messages', onPress: () {}),
);

FCard.raw(...)

FCard.raw(
  child: const Placeholder(),
);