SequentialOnboardingUiState

data class SequentialOnboardingUiState(val steps: List<Step> = emptyList(), val currentPage: Int = 0, val pageCount: Int = steps.size, val actionText: String = "Start")

A data class that represents the current ui state of the sequential onboarding screen.

Constructors

Link copied to clipboard
constructor(steps: List<Step> = emptyList(), currentPage: Int = 0, pageCount: Int = steps.size, actionText: String = "Start")

Properties

Link copied to clipboard
Link copied to clipboard
val currentPage: Int = 0
Link copied to clipboard
Link copied to clipboard