Skip to Content
Forui 0.11.0 is released 🎉

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.

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