Package-level declarations
Types
Link copied to clipboard
The decoration of the StoryStep
Link copied to clipboard
data class StoryStep(val id: String = GenerateId.generate(), val localId: String = GenerateId.generate(), val type: StoryType, val parentId: String? = null, val url: String? = null, val path: String? = null, val text: String? = null, val title: String? = null, val checked: Boolean? = false, val steps: List<StoryStep> = emptyList(), val tags: Set<TagInfo> = emptySet(), val decoration: Decoration = Decoration())
The model defining the information that can be draw in the screen. This is the most basic building block of the library and can have many types like image, message, audio, video, button, empty space, etc.
Link copied to clipboard
The default types of StoryTypes. You can add more types without extending this enum (which is final), by creating new strings of types.
Link copied to clipboard