DrawStory

data class DrawStory(val storyStep: StoryStep, val position: Int, val isSelected: Boolean = false, val cursor: Selection? = null, val extraInfo: Map<String, Any> = emptyMap())

Class meant to be draw in the screen. It contains both the information of a story step and meta information and the state of the TextEditor like if the message is selected

Constructors

Link copied to clipboard
constructor(storyStep: StoryStep, position: Int, isSelected: Boolean = false, cursor: Selection? = null, extraInfo: Map<String, Any> = emptyMap())

Properties

Link copied to clipboard
val cursor: Selection? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val isSelected: Boolean = false
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard