Card

A Card is a material design widget in Flutter that displays a piece of content and can provide a visual container for related information. It has a built-in elevation to give it a slight shadow and can be customized with different colors and shapes.

Example:

Card(
  child: ListTile(
    leading: Icon(Icons.album),
    title: Text('Card Title'),
    subtitle: Text('Card Subtitle'),
  ),
)

This will display a card with an album icon, a title, and a subtitle.

Attributes