You can edit 8 Components for free. Get premium for unlimited access.
Displays a card with header, content, and footer.
The Card component is used to group elements together and allows quick access to features.
This component inherits props from the Card.
You can edit the size with the md or lg parameter.

Image 2.1 : Size md

Image 2.2 : Size lg
You can edit the state with the default, active or disabled parameter.

Image 3.1 : State default

Image 3.2 : State active

Image 3.3 : State disabled
You can edit the description with the true or false parameter.

Image 4.1 : Description true

Image 4.2 : Description false
The DLCard component is used to group elements together and allows quick access to features.
This component inherits props from the Card.
-
-
-
You can edit the size with the .md or .lg parameter.
You can edit the state with the .normal or .disabled parameter.
The Card component is used to group elements together and allows quick access to features.
This component inherits props from the Card.
-
-
-
You can edit the size with the CardSize.md or CardSize.lg parameter.
You can edit the state with the CardState.default or CardState.disabled parameter.
Preview
Code
DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.lg,
)Add this code example to your project to see how the component works.
DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.lg,
enableActiveState: true,
)DlCard is a clickable, token-based content card with interchangeable icon, optional description, size variants md and lg and optional active toggle status.
Size
Preview
Code
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: const [
Expanded(
child: DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.lg,
),
),
SizedBox(width: DlSpacingTokens.p_16),
Expanded(
child: DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.md,
),
),
],
)State
Preview
Code
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: const [
Expanded(
child: DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.lg,
enableActiveState: true,
),
),
SizedBox(width: DlSpacingTokens.p_16),
Expanded(
child: DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.lg,
),
),
SizedBox(width: DlSpacingTokens.p_16),
Expanded(
child: DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.lg,
state: DlCardState.disabled,
),
),
],
)Without Description
Preview
Code
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: const [
Expanded(
child: DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
description: 'Description',
size: DlCardSize.lg,
),
),
SizedBox(width: DlSpacingTokens.p_16),
Expanded(
child: DlCard(
icon: DlPlaceholderIcon(),
title: 'Title',
size: DlCardSize.lg,
),
),
],
)You have questions or need help?
You want to try?
Save time and money?