ToolbarData

data class ToolbarData(    val title: String = "",     val isUpButtonVisible: Boolean = false,     var isTitleVisible: Boolean = true)

Class containing Toolbar data from the Step

Constructors

Link copied to clipboard
fun ToolbarData(    title: String = "",     isUpButtonVisible: Boolean = false,     isTitleVisible: Boolean = true)

Properties

Link copied to clipboard
var isTitleVisible: Boolean = true

True if the title layout should be displayed in the toolbar, false otherwise

Link copied to clipboard
val isUpButtonVisible: Boolean = false

isUpButtonVisible true if the Up button should be displayed in the toolbar, false otherwise

Link copied to clipboard
val title: String

Text that will be shown in the action bar when showing this Step