DefaultExamerExpandableTestCard

@Composable
fun DefaultExamerExpandableTestCard(    test: TestDetails,     isExpanded: Boolean,     onExpandButtonClick: () -> Unit,     onTakeTestButtonClick: () -> Unit,     modifier: Modifier = Modifier,     onClick: () -> Unit = {},     is24HourTimeFormat: Boolean = false)

This is a default implementation of ExamerExpandableTestCard which displays the ExamerCardExpandedContent when the card is expanded. ExamerExpandableTestCard provides slot for defining the content to be displayed when the card is expanded.

Parameters

test

an instance of TestDetails that the card will use to display the information.

isExpanded

indicates whether the card is expanded.

onExpandButtonClick

callback to be called when the expand button of the card is clicked.

onTakeTestButtonClick

callback to be called when the take test button is clicked.

modifier

the Modifier to be applied to the composable.

onClick

callback to be called when the card is clicked

is24HourTimeFormat

indicates whether the time information displayed in the card is in 24 hour format.