unOrderedListItemDrawer
fun unOrderedListItemDrawer(isDesktop: Boolean, manager: WriteopiaStateManager, modifier: Modifier = Modifier, dragIconWidth: Dp = 16.dp, checkBoxPadding: PaddingValues = PaddingValues(0.dp), config: DrawConfig, messageDrawer: @Composable RowScope.() -> SimpleTextDrawer): StoryStepDrawer
Drawer for a unordered list. This type of item it just a normal message with some decoration at the start of Composable to show that this is part of a list.
fun unOrderedListItemDrawer(isDesktop: Boolean, modifier: Modifier = Modifier, customBackgroundColor: Color = Color.Transparent, clickable: Boolean = true, onSelected: (Boolean, Int) -> Unit = { _, _ -> }, dragIconWidth: Dp = 16.dp, checkBoxPadding: PaddingValues = PaddingValues(0.dp), config: DrawConfig, onDragHover: (Int) -> Unit, onDragStart: () -> Unit, onDragStop: () -> Unit, moveRequest: (Action.Move) -> Unit = {}, startContent: @Composable (StoryStep, DrawInfo) -> Unit? = { _, _ ->
Text(
modifier = Modifier.padding(checkBoxPadding),
text = "-",
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onBackground
)
}, messageDrawer: @Composable RowScope.() -> SimpleTextDrawer): StoryStepDrawer