Package-level declarations
Types
Link copied to clipboard
class CheckItemPreviewDrawer(modifier: Modifier = Modifier.padding(vertical = 2.dp, horizontal = 10.dp)) : StoryStepDrawer
The drawer to a check item in the preview of a note.
Link copied to clipboard
class HeaderPreviewDrawer(modifier: Modifier = Modifier, style: TextStyle? = null) : StoryStepDrawer
The drawer to the header of a document in the preview of a note.
Link copied to clipboard
class TextPreviewDrawer(modifier: Modifier = Modifier.padding(vertical = 5.dp, horizontal = 16.dp), style: @Composable () -> TextStyle = {
MaterialTheme.typography.bodyMedium.copy(fontSize = 15.sp)
}, maxLines: Int = Int.MAX_VALUE, textColor: @Composable (DrawInfo) -> Color = {
MaterialTheme.colorScheme.onBackground
}) : StoryStepDrawer
Link copied to clipboard
class UnOrderedListItemPreviewDrawer(modifier: Modifier = Modifier.padding(vertical = 5.dp, horizontal = 16.dp), textModifier: Modifier = Modifier, startText: String = "-", textStyle: @Composable () -> TextStyle = {
LocalTextStyle.current
}, maxLines: Int = 1) : StoryStepDrawer