HeaderDrawer
class HeaderDrawer(modifier: Modifier = Modifier, headerClick: () -> Unit = {}, textDrawer: () -> SimpleTextDrawer, placeHolderStyle: @Composable () -> TextStyle = {
MaterialTheme.typography.displaySmall.copy(
fontWeight = FontWeight.Bold,
color = Color.LightGray
)
}) : StoryStepDrawer
The header for the Document. It applies some stylish to the title of the document.
Constructors
Link copied to clipboard
constructor(modifier: Modifier = Modifier, headerClick: () -> Unit = {}, textDrawer: () -> SimpleTextDrawer, placeHolderStyle: @Composable () -> TextStyle = {
MaterialTheme.typography.displaySmall.copy(
fontWeight = FontWeight.Bold,
color = Color.LightGray
)
})