Card
A flexible container component that displays content with an optional title, subtitle, and child widget. Cards are commonly used to group related information and actions.
Preview
Usage
FCard(...)
FCard(
title: const Text('Notification'),
subtitle: const Text('You have 3 unread messages.'),
child: FButton(child: const Text('Read messages'), onPress: () {}),
);
FCard.raw(...)
FCard.raw(
child: const Placeholder(),
);
Last updated on