Package-level declarations

Types

Link copied to clipboard
class AiAnswerPreviewDrawer(modifier: Modifier = Modifier.padding(vertical = 5.dp, horizontal = 16.dp), style: @Composable (StoryStep) -> TextStyle = { previewTextStyle(it) }, maxLines: Int = Int.MAX_VALUE, textColor: @Composable (DrawInfo) -> Color = { MaterialTheme.colorScheme.onBackground }) : StoryStepDrawer
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 DocumentLinkPreviewDrawer(modifier: Modifier = Modifier.padding(vertical = 5.dp, horizontal = 16.dp), style: @Composable (StoryStep) -> TextStyle = { previewTextStyle(it).copy(textDecoration = TextDecoration.Underline) }, maxLines: Int = Int.MAX_VALUE, textColor: @Composable (DrawInfo) -> Color = { MaterialTheme.colorScheme.onBackground }) : StoryStepDrawer
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 ImagePreviewDrawer(modifier: Modifier = Modifier) : StoryStepDrawer
Link copied to clipboard
class TextPreviewDrawer(modifier: Modifier = Modifier.padding(vertical = 5.dp, horizontal = 16.dp), style: @Composable (StoryStep) -> TextStyle = { previewTextStyle(it) }, 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 (StoryStep) -> TextStyle = { previewTextStyle(it) }, maxLines: Int = 1) : StoryStepDrawer

Functions