swipeTextDrawer
fun swipeTextDrawer(modifier: Modifier = Modifier, customBackgroundColor: Color = Color.Transparent, clickable: Boolean = true, dragIconWidth: Dp = 16.dp, config: DrawConfig, onSelected: (Boolean, Int) -> Unit = { _, _ -> }, onDragHover: (Int) -> Unit, onDragStart: () -> Unit = {}, onDragStop: () -> Unit = {}, moveRequest: (Action.Move) -> Unit = {}, messageDrawer: @Composable RowScope.() -> SimpleTextDrawer, isDesktop: Boolean, endContent: @Composable (StoryStep, DrawInfo, Boolean) -> Unit? = null): StoryStepDrawer
Draw a text that can be edited with a swipe effect to trigger edition.
fun swipeTextDrawer(manager: WriteopiaStateManager, modifier: Modifier = Modifier, dragIconWidth: Dp = 16.dp, config: DrawConfig, isDesktop: Boolean, endContent: @Composable (StoryStep, DrawInfo, Boolean) -> Unit? = null, messageDrawer: @Composable RowScope.() -> SimpleTextDrawer): StoryStepDrawer