OutlinedCard
Material Design outlined card.
Outlined cards contain content and actions that relate information about a subject. They have a visual boundary around the container. This can provide greater emphasis than the other types.
This OutlinedCard does not handle input events - see the other OutlinedCard overloads if you want a clickable or selectable OutlinedCard.
Parameters
the Modifier to be applied to this card
CardColors that will be used to resolve the color(s) used for this card in different states. See CardDefaults.outlinedCardColors.
the border to draw around the container of this card
Material Design outlined card.
Outlined cards contain content and actions that relate information about a subject. They have a visual boundary around the container. This can provide greater emphasis than the other types.
This OutlinedCard handles click events, calling its onClick lambda.
Parameters
called when this card is clicked
the Modifier to be applied to this card
controls the enabled state of this card. When false
, this component will not respond to user input, and it will appear visually disabled and disabled to accessibility services.
CardColors that will be used to resolve the color(s) used for this card in different states. See CardDefaults.outlinedCardColors.
the MutableInteractionSource representing the stream of Interactions for this card. You can create and pass in your own remember
ed instance to observe Interactions and customize the appearance / behavior of this card in different states.