DrawConfig
data class DrawConfig(val titleStyle: @Composable (FontFamily?) -> TextStyle = { font ->
MaterialTheme.typography.displaySmall.copy(
fontWeight = FontWeight.Bold,
color = MaterialTheme.colorScheme.onBackground,
fontFamily = font
)
}, val titlePlaceHolderStyle: @Composable () -> TextStyle = {
MaterialTheme.typography.displaySmall.copy(
fontWeight = FontWeight.Bold,
color = Color.LightGray
)
}, val textDrawerStartPadding: Int = 8, val textDrawerInnerStartPadding: Int = 4, val textVerticalPadding: Int = 0, val codeBlockStartPadding: Int = 8, val codeBlockHorizontalInnerPadding: Int = 12, val codeBlockVerticalInnerPadding: Int = 8, val checkBoxStartPadding: Int = 16, val checkBoxEndPadding: Int = 8, val checkBoxItemVerticalPadding: Int = 8, val listItemStartPadding: Int = 16, val listItemEndPadding: Int = 8, val listItemItemVerticalPadding: Int = 8, val selectedColor: @Composable () -> Color = { MaterialTheme.colorScheme.primary }, val selectedBorderColor: @Composable () -> Color = { MaterialTheme.colorScheme.primary })
Constructors
Link copied to clipboard
constructor(titleStyle: @Composable (FontFamily?) -> TextStyle = { font ->
MaterialTheme.typography.displaySmall.copy(
fontWeight = FontWeight.Bold,
color = MaterialTheme.colorScheme.onBackground,
fontFamily = font
)
}, titlePlaceHolderStyle: @Composable () -> TextStyle = {
MaterialTheme.typography.displaySmall.copy(
fontWeight = FontWeight.Bold,
color = Color.LightGray
)
}, textDrawerStartPadding: Int = 8, textDrawerInnerStartPadding: Int = 4, textVerticalPadding: Int = 0, codeBlockStartPadding: Int = 8, codeBlockHorizontalInnerPadding: Int = 12, codeBlockVerticalInnerPadding: Int = 8, checkBoxStartPadding: Int = 16, checkBoxEndPadding: Int = 8, checkBoxItemVerticalPadding: Int = 8, listItemStartPadding: Int = 16, listItemEndPadding: Int = 8, listItemItemVerticalPadding: Int = 8, selectedColor: @Composable () -> Color = { MaterialTheme.colorScheme.primary }, selectedBorderColor: @Composable () -> Color = { MaterialTheme.colorScheme.primary })
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard